Skip to content

Commit

Permalink
Run coverage on Django 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ovidner committed Nov 4, 2016
1 parent 6ba250e commit 5e132e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ install: pip install --quiet tox
script: tox

after_script:
- if [ $TOXENV == "py27-django19" ]; then
- if [ $TOXENV == "py27-django110" ]; then
pip install --quiet coveralls;
coveralls;
fi
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ deps =
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
py27-django19: djangorestframework-jwt
py27-django19: coverage
py27-django110: djangorestframework-jwt
py27-django110: coverage
-rrequirements_test.txt
commands =
py.test

[testenv:py27-django19]
[testenv:py27-django110]
commands =
coverage run --source=rest_social_auth -m py.test
coverage report

0 comments on commit 5e132e0

Please sign in to comment.