Skip to content

Commit

Permalink
Added tox config for multi version testing
Browse files Browse the repository at this point in the history
  • Loading branch information
qoda committed Sep 11, 2014
1 parent 3b95237 commit b170eba
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[tox]
envlist =
django17,
django16,
django15,
django14

[testenv]
basepython = python2.7
commands=python setup.py test

[testenv:django17]
deps = django>=1.7,<1.8

[testenv:django16]
deps = django>=1.6,<1.7

[testenv:django15]
deps = django>=1.5,<1.6

[testenv:django14]
deps = django>=1.4,<1.5

0 comments on commit b170eba

Please sign in to comment.