gpt4 book ai didi

python - Unittest 的 subTest 不适用于 Pytest,还是我疯了?

转载 作者:行者123 更新时间:2023-11-28 21:36:37 26 4
gpt4 key购买 nike

据我了解,如果测试失败,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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com