如何在所有模块上运行pytest?

时间:2015-05-05 15:32:52

标签: python nose pytest

nose具有all-modules = 1配置值,这使得其测试收集器可以查看所有文件,而不仅仅是符合其命名约定的文件:。http://nose.readthedocs.org/en/latest/plugins/allmodules.html

使用pytest执行此操作的等效方法是什么?即切换到pytest时我不想重命名所有测试模块。

1 个答案:

答案 0 :(得分:0)

根据:https://pytest.org/latest/example/pythoncollection.html#changing-naming-conventions

我已将这些行添加到我的setup.cfg文件中:

[pytest]
python_files=*py