Skip to content

Instantly share code, notes, and snippets.

@carljm
Created April 17, 2014 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carljm/11015570 to your computer and use it in GitHub Desktop.
Save carljm/11015570 to your computer and use it in GitHub Desktop.
diff --git a/tox.ini b/tox.ini
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,9 @@
[tox]
envlist=
py26-1.3,py26-1.4,py26-1.5,py26-1.6,
- py27-1.3,py27-1.4,py27-1.5,py27-1.6,py27-1.7,py27-master
+ py27-1.3,py27-1.4,py27-1.5,py27-1.6,py27-1.7,py27-master,
+ py33-1.5,py33-1.6,py33-1.7,py33-master,
+ py34-1.5,py34-1.6,py34-1.7,py34-master
[testenv]
commands=python setup.py test
@@ -55,3 +57,43 @@
basepython=python2.7
deps=
https://github.com/django/django/tarball/master
+
+[testenv:py33-1.5]
+basepython=python3.3
+deps=
+ django==1.5.5
+
+[testenv:py33-1.6]
+basepython=python3.3
+deps=
+ django==1.6.2
+
+[testenv:py33-1.7]
+basepython=python3.3
+deps=
+ https://github.com/django/django/tarball/stable/1.7.x
+
+[testenv:py33-master]
+basepython=python3.3
+deps=
+ https://github.com/django/django/tarball/master
+
+[testenv:py34-1.5]
+basepython=python3.4
+deps=
+ django==1.5.5
+
+[testenv:py34-1.6]
+basepython=python3.4
+deps=
+ django==1.6.2
+
+[testenv:py34-1.7]
+basepython=python3.4
+deps=
+ https://github.com/django/django/tarball/stable/1.7.x
+
+[testenv:py34-master]
+basepython=python3.4
+deps=
+ https://github.com/django/django/tarball/master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment