pytest.ini 410 B

123456789101112131415161718
  1. [pytest]
  2. norecursedirs =
  3. .*
  4. __pycache__
  5. cover
  6. docs
  7. # utils has it's own config
  8. utils
  9. python_files =
  10. # TODO(rhcarvalho): rename test files to follow a single pattern. "test*.py"
  11. # is Python unittest's default, while pytest discovers both "test_*.py" and
  12. # "*_test.py" by default.
  13. test_*.py
  14. *_tests.py
  15. addopts =
  16. --cov=.
  17. --cov-report=term
  18. --cov-report=html