pytest.ini 368 B

12345678910111213141516
  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. *_tests.py
  13. addopts =
  14. --cov=.
  15. --cov-report=term
  16. --cov-report=html