We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d0aeef commit 34f34f4Copy full SHA for 34f34f4
.travis.yml
@@ -14,6 +14,7 @@ env:
14
15
install:
16
- pip install $DJANGO
17
+ - pip install coveralls
18
- pip install defusedxml==0.3
19
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install oauth2==1.5.211 --use-mirrors; fi"
20
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth-plus==2.0 --use-mirrors; fi"
@@ -23,7 +24,10 @@ install:
23
24
- export PYTHONPATH=.
25
26
script:
- - python rest_framework/runtests/runtests.py
27
+ - coverage run --omit="rest_framework/tests/*,rest_framework/runtests/*,rest_framework/compat.py" rest_framework/runtests/runtests.py
28
+
29
+after_success:
30
+ - coveralls
31
32
matrix:
33
exclude:
0 commit comments