gpt4 book ai didi

python - pytest 可以在测试类中运行测试吗?

转载 作者:太空宇宙 更新时间:2023-11-03 13:27:16 25 4
gpt4 key购买 nike

我有一堆测试,我决定将它们放在一个类中,示例代码如下:

class IntegrationTests:

@pytest.mark.integrationtest
@pytest.mark.asyncio
async def test_job(self):
assert await do_stuff()

但是,当我尝试运行测试时:pipenv run pytest -v -m integrationtest,它们根本没有被检测到,在将它们移到一个类之前我得到了以下信息:

5 passed, 4 deselected in 0.78 seconds

我现在明白了:

2 passed, 4 deselected in 0.51 seconds

为什么 pytest 检测不到这些测试?不支持测试类吗?

最佳答案

类的名称需要以 Test 开头,以便 pytest 发现它。

class TestIntegration:

@pytest.mark.integrationtest
@pytest.mark.asyncio
async def test_job(self):
assert await do_stuff()

参见 Conventions for Python test discovery

关于python - pytest 可以在测试类中运行测试吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52967976/

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