Skip to content

Commit

Permalink
Update tox.ini to use all supported Django versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bmihelac committed Nov 29, 2013
1 parent cf4359b commit 822d3f5
Showing 1 changed file with 31 additions and 5 deletions.
36 changes: 31 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,39 @@
[tox]
envlist = py26, py27, py27-tablib-dev, py27-mysql-innodb
envlist = py26-1.4, py27-1.4, py27-tablib-dev-1.4, py27-mysql-innodb-1.4, py27-1.5, py27-1.6

[testenv]
commands=python {toxinidir}/tests/manage.py test core

[testenv:py27-tablib-dev]
deps = -egit+https://github.com/kennethreitz/tablib.git#egg=tablib
[testenv:py26-1.4]
basepython = python2.6
deps =
django==1.4.10

[testenv:py27-mysql-innodb]
deps = mysql-python
[testenv:py27-1.4]
basepython = python2.7
deps =
django==1.4.10

[testenv:py27-tablib-dev-1.4]
basepython = python2.7
deps =
django==1.4.10
-egit+https://github.com/kennethreitz/tablib.git#egg=tablib

[testenv:py27-mysql-innodb-1.4]
basepython = python2.7
deps =
django==1.4.10
mysql-python
setenv =
IMPORT_EXPORT_TEST_TYPE=mysql-innodb

[testenv:py27-1.5]
basepython = python2.7
deps =
django==1.5.3

[testenv:py27-1.6]
basepython = python2.7
deps =
django==1.6

0 comments on commit 822d3f5

Please sign in to comment.