We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd77738 commit f309c7cCopy full SHA for f309c7c
.gitignore
@@ -34,6 +34,7 @@ pip-delete-this-directory.txt
34
35
# Coverage
36
.coverage
37
+coverage.xml
38
39
# Tox
40
.tox/
.travis.yml
@@ -100,4 +100,4 @@ script:
100
- tox
101
after_success:
102
- pip install codecov
103
- - codecov -e TOXENV
+ - codecov -e TOXENV --required
tox.ini
@@ -24,7 +24,7 @@ setenv =
24
DJANGO_SETTINGS_MODULE=example.settings.test
25
26
commands =
27
- python setup.py test --addopts '--cov --no-cov-on-fail' {posargs}
+ python setup.py test --addopts '--cov --no-cov-on-fail --cov-report xml' {posargs}
28
29
[testenv:flake8]
30
deps =
0 commit comments