pytest.ini 382 B

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