There was an error while loading. Please reload this page.
1 parent 6fb96e9 commit 739d389Copy full SHA for 739d389
.travis.yml
@@ -31,4 +31,4 @@ script:
31
32
after_success:
33
- pip install codecov
34
- - codecov
+ - codecov -e TOX_ENV
runtests.py
@@ -93,7 +93,11 @@ def is_class(string):
93
except ValueError:
94
pass
95
else:
96
- pytest_args = ['--cov', 'rest_framework'] + pytest_args
+ pytest_args = [
97
+ '--cov-report',
98
+ 'xml',
99
+ '--cov',
100
+ 'rest_framework'] + pytest_args
101
102
if first_arg.startswith('-'):
103
# `runtests.py [flags]`
0 commit comments