diff options
| author | Tom Christie | 2014-08-19 13:28:07 +0100 | 
|---|---|---|
| committer | Tom Christie | 2014-08-19 13:28:07 +0100 | 
| commit | bf09c32de8f9d528f83e9cb7a2773d1f4c9ab563 (patch) | |
| tree | 334c85c136fe1dc010f8d7860b9431b3a9d87e56 /tox.ini | |
| parent | e385a7b8eb6e538698f28128e43fe8bfaefd4e97 (diff) | |
| download | django-rest-framework-bf09c32de8f9d528f83e9cb7a2773d1f4c9ab563.tar.bz2 | |
Code linting and added runtests.py
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 10 | 
1 files changed, 8 insertions, 2 deletions
| @@ -1,13 +1,19 @@  [tox]  downloadcache = {toxworkdir}/cache/  envlist = +       flake8,         py3.4-django1.7,py3.3-django1.7,py3.2-django1.7,py2.7-django1.7,         py3.4-django1.6,py3.3-django1.6,py3.2-django1.6,py2.7-django1.6,py2.6-django1.6,         py3.4-django1.5,py3.3-django1.5,py3.2-django1.5,py2.7-django1.5,py2.6-django1.5, -       py2.7-django1.4,py2.6-django1.4, +       py2.7-django1.4,py2.6-django1.4  [testenv] -commands = py.test -q +commands = ./runtests.py --fast + +[testenv:flake8] +basepython = python2.7 +deps = pytest==2.5.2 +commands = ./runtests.py --lintonly  [testenv:py3.4-django1.7]  basepython = python3.4 | 
