我们先来看一下官方文档(感觉应该是官方文档=.=)是怎么描述收集多个测试用例的:
pytest will run all files of the form test_*.py or *_test.py in the current directory and its subdirectories. More generally, it follows standard test discovery rules.
用蹩脚英语大致翻译一下:pytest,将会把当前目录和子目录下类似于“test_*.py”或者“*_test.py”这样以‘test_’开头或者‘_test’结尾的python文件,当作用例来运行。就一般而言,它遵循python测试用例设计(收集)规范。
这里的收集约定(规范)大致如下:
原文:https://www.cnblogs.com/saixuyu/p/13449543.html