diff options
| author | Aymeric Augustin | 2013-10-16 21:58:11 +0200 |
|---|---|---|
| committer | Aymeric Augustin | 2013-10-17 18:24:57 +0200 |
| commit | 604499223d6a074141b8901a4fbf53b28fd17126 (patch) | |
| tree | 77b21fb5792f7a53b254cfbfe60844cebacb9fbd /tox.ini | |
| parent | a295b02cb8c3b8685f6fe7880b9412566ba1d4f6 (diff) | |
| download | django-debug-toolbar-604499223d6a074141b8901a4fbf53b28fd17126.tar.bz2 | |
Add Python 3 to tox configurations.
Tests are obviously failing at this point.
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -3,7 +3,9 @@ envlist = py26-django14, py27-django14, py26-django15, - py27-django15 + py27-django15, + py32-django15, + py33-django15 [testenv] commands = python runtests.py @@ -23,3 +25,11 @@ deps = Django>=1.5,<1.6 [testenv:py27-django15] basepython = python2.7 deps = Django>=1.5,<1.6 + +[testenv:py32-django15] +basepython = python3.2 +deps = Django>=1.5,<1.6 + +[testenv:py33-django15] +basepython = python3.3 +deps = Django>=1.5,<1.6 |
