nose具有all-modules = 1配置值,这使得其测试收集器可以查看所有文件,而不仅仅是符合其命名约定的文件:。http://nose.readthedocs.org/en/latest/plugins/allmodules.html
使用pytest执行此操作的等效方法是什么?即切换到pytest时我不想重命名所有测试模块。
答案 0 :(得分:0)
根据:https://pytest.org/latest/example/pythoncollection.html#changing-naming-conventions
我已将这些行添加到我的setup.cfg
文件中:
[pytest]
python_files=*py