Skip to content

Commit

Permalink
Add tox configuration file.
Browse files Browse the repository at this point in the history
  • Loading branch information
zlorf committed Sep 15, 2013
1 parent 04f274f commit 8314e57
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions tox.ini
@@ -0,0 +1,37 @@
[tox]
distribute = False
envlist =
py3-dj-1.5.X,
dj-1.5.X,
dj-1.4.X,
dj-1.3.X

[testenv]
downloadcache = {toxworkdir}/_download/
commands =
django-admin.py --version
{envpython} runtests.py
deps =
six


[testenv:py3-dj-1.5.X]
basepython = python3.2
deps =
{[testenv]deps}
Django>=1.5,<1.6

[testenv:dj-1.5.X]
deps =
{[testenv]deps}
Django>=1.5,<1.6

[testenv:dj-1.4.X]
deps =
{[testenv]deps}
Django>=1.4,<1.5

[testenv:dj-1.3.X]
deps =
{[testenv]deps}
Django>=1.3,<1.4

0 comments on commit 8314e57

Please sign in to comment.