Sam Murphy-sugrue
- 活动总数 2
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 1
-
Sam Murphy-sugrue 创建了一个帖子, 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...