This commit is contained in:
Xavier Ordoquy 2015-07-13 12:26:14 +00:00
commit 24172a559f
3 changed files with 7 additions and 3 deletions

View File

@ -39,7 +39,10 @@ matrix:
- env: TOX_ENV=py34-djangomaster
install:
- pip install tox
- pip install tox python-coveralls
script:
- tox -e $TOX_ENV
- tox -e $TOX_ENV -- --cov=rest_framework
after_success:
- coveralls

View File

@ -1,3 +1,4 @@
# PyTest for running the tests.
pytest==2.6.4
pytest-django==2.8.0
pytest-cov

View File

@ -9,7 +9,7 @@ envlist =
{py27,py32,py33,py34}-django{17,18,master}
[testenv]
commands = ./runtests.py --fast {posargs}
commands = py.test tests -q {posargs}
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =