如何在pytest配置中启用特定文件的检查?

时间:2018-03-29 14:33:45

标签: python pytest setup.py pylint flake8

我的setup.cfg文件看起来像这样

[bdist_wheel]
universal=1
[aliases]
test=pytest
[tool:pytest]
addopts=-s tests app -vv --cov app --cov-report html --pylint --flake8 --doctest-modules -ra --no-print-logs

我也想检查我的setup.py文件,但它位于我项目的根目录中。我不想添加根并忽略不需要检查的每个文件夹。

如何添加setup.py文件的检查?更具体一点,我希望flake8pylint进行检查。

0 个答案:

没有答案