1.在单个文件中:test.py
,我有3个测试函数:test1()
、test2()
、test3()
。pytest
和pytest-benchmark
是并行还是串行运行这3个测试用例?
1.我有3个文件:test1.py
、test2.py
、test3.py
。我在每个文件中都有一个测试函数:test1()
、test2()
、test3()
。如果我只是在它们所在的目录中运行pytest
或pytest-benchmark
,这3个测试是并行运行还是串行运行?
2条答案
按热度按时间umuewwlo1#
根据Reddit上的responses from crosspost和上面的评论,
pytest
和pytest-benchmark
始终串行运行。kh212irz2#
pytest和pytest-benchmark总是串行运行。可以从主文件夹运行文件终端This将帮助你