Sam Murphy-sugrue
- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Sam Murphy-sugrue created a post, Is there an easy way to run a single test in class that inherits from a base class? Example below
If I have a base test class such as the below: class BaseTestClass: def test_one(self): assert Falseclass TestClass(BaseTestClass): def test_two(self): assert True I can run te...