作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
据我了解,如果测试失败,pytest 应使用unittest.TestCase.subtest()
提供参数信息。所以这是类似于我的代码的东西:
class TestStuff(unittest.TestCase):
def test_foo(self):
for i in range(0, 100):
with self.subTest(msg = "seed", i = i):
np.random.seed(i)
n = np.random.randint(0, 30)
self.assertGreaterEqual(28, n)
这当然失败了,并打印出以下内容:
================================================================================================== test session starts ===================================================================================================
platform darwin -- Python 3.7.3, pytest-5.0.1, py-1.8.0, pluggy-0.12.0
rootdir: /Users/foopackage
plugins: openfiles-0.3.2, arraydiff-0.3, doctestplus-0.3.0, remotedata-0.3.1
collected 7 items
foo.py ......F [100%]
======================================================================================================== FAILURES ========================================================================================================
________________________________________________________________________________________________ TestStuff.test_foo _________________________________________________________________________________________________
self = <foo.test_foo.TestStuff testMethod=test_foo>
def test_foo(self):
for i in range(0, 100):
with self.subTest(msg = "seed", i = i):
np.random.seed(i)
n = np.random.randint(0, 30)
> self.assertGreaterEqual(28, n)
E AssertionError: 28 not greater than or equal to 29
foo.py:135: AssertionError
=========================================================================================== 1 failed, 6 passed in 1.91 seconds ===========================================================================================
如您所见,没有关于哪个种子(i 的值)未通过测试的消息。我到处都读到 Pytest 与 unittest 兼容,所以我似乎看不到这里的问题。有人可以解释一下吗?谢谢
最佳答案
需要 pytest-subtest 插件来添加该功能
关于python - Unittest 的 subTest 不适用于 Pytest,还是我疯了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58150014/
我是一名优秀的程序员,十分优秀!