Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

Commit

Permalink
chore: Remove django > 1.8 from tox envs
Browse files Browse the repository at this point in the history
  • Loading branch information
relekang committed Apr 28, 2016
1 parent 20ad2a0 commit fe4c74c
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,30 +1,28 @@
[tox]
envlist =
flake8,isort
{py27}-{django14},
{py27,py34}-{django15,django16,django17,django18,django19}
{py27,py3}-{django18,django19}
skipsdist = True

[testenv]
basepython =
py3: python3
py27: python2
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}
commands =
coverage run -p --source=nopassword runtests.py
deps =
-r{toxinidir}/requirements.txt
django14: Django>=1.4,<1.5
django15: Django>=1.5,<1.6
django16: Django>=1.6,<1.7
django17: Django>=1.7,<1.8
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10

[testenv:flake8]
basepython = python3.4
basepython = python3
deps = flake8
commands = flake8

[testenv:isort]
basepython = python3.4
basepython = python3
deps = isort
commands = isort -c -rc nopassword tests

0 comments on commit fe4c74c

Please sign in to comment.