Write coverage file.

This commit is contained in:
Jannis Leidel 2020-11-26 11:03:50 +01:00
parent 0bf8ff9c34
commit acf386e9ba
No known key found for this signature in database
GPG key ID: C795956FB489DCA9
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -2,6 +2,7 @@
*.pyc
*.swp
.coverage
coverage.xml
.DS_Store
.idea
.mypy_cache/

View file

@ -1,5 +1,5 @@
[pytest]
testpaths = axes/tests
python_files = tests.py test_*.py tests_*.py *_tests.py *_test.py
addopts = --cov axes --cov-config .coveragerc --cov-append --cov-report term-missing
addopts = --cov axes --cov-config .coveragerc --cov-append --cov-report term-missing --cov-report=xml
DJANGO_SETTINGS_MODULE = axes.tests.settings