python Unittest的subTest不能和Pytest一起使用,是我疯了吗?

pvcm50d1  于 2023-06-28  发布在  Python
关注(0)|答案(3)|浏览(158)

据我所知,如果测试失败,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兼容,所以我似乎看不到这里的问题。有人能解释一下吗?谢谢

ie3xauqp

ie3xauqp1#

需要pytest-subtest插件来添加该特性

jbose2ul

jbose2ul2#

对于像我这样的人来说,检查你是否使用了鼻子测试。我在某个时候将它添加到我们的项目中,以获得测试覆盖率,几个月后,我们注意到subTest不会单独执行(当东西像往常一样破裂时),并试图找出为什么突然子测试与主测试内联执行。
其他看起来不直接相关但可能有帮助的事情:
1.如果你正在使用PyCharm,请注意测试是如何运行的。它可能会显式地使用nosetest,pytest或unittest来运行它们,而不是Django manage.py RunTests。
1.在PyCharm中,您(或其他人)可以关闭Django测试用例运行器,您(请参阅PyCharm >设置>语言和框架> Django >不使用Django测试运行器)
1.在PyCharm中,您还可以强制选择默认的测试用例运行器(用于新配置)。参见PyCharm >设置>工具>Python集成工具>测试(部分)>默认测试运行器
1.在Django应用的settings.py中,你也可以指定一个测试运行器。我的是,再一次,nosetest,这并不能正常工作,因为PyCharm和Django去(对我来说)。
1.确保您的测试运行器与子测试兼容。据我所知,pytest和unittest都很好。其他一切您的里程可能会有所不同
1.确保您是从正确的TestCase继承的。django.test.TestCaseunittest.TestCase,支持自v3.4(unittest)起的subTest

rggaifut

rggaifut3#

简单地安装pytest-subtest对我来说很有效:pip install pytest-subtest

相关问题