我如何 运行 对所有模块进行 pytest?
How do I run pytest on all-modules?
nose 有一个 all-modules=1 配置值,这使得它的测试收集器查找所有文件,而不仅仅是那些遵循其命名约定的文件:.http://nose.readthedocs.org/en/latest/plugins/allmodules.html
使用 pytest 执行此操作的等效方法是什么?即我不想在切换到 pytest 时重命名我们所有的测试模块。
根据:http://doc.pytest.org/en/latest/reference.html#confval-python_files
我已将这些行添加到我的 setup.cfg
文件中:
[pytest]
python_files=*py
nose 有一个 all-modules=1 配置值,这使得它的测试收集器查找所有文件,而不仅仅是那些遵循其命名约定的文件:.http://nose.readthedocs.org/en/latest/plugins/allmodules.html
使用 pytest 执行此操作的等效方法是什么?即我不想在切换到 pytest 时重命名我们所有的测试模块。
根据:http://doc.pytest.org/en/latest/reference.html#confval-python_files
我已将这些行添加到我的 setup.cfg
文件中:
[pytest]
python_files=*py