Add tox configuration file.
Note: The tests do not currently pass.fix_request_path_info
parent
6b7edd06a6
commit
25821cd4da
|
|
@ -0,0 +1,33 @@
|
||||||
|
[tox]
|
||||||
|
envlist=
|
||||||
|
py26-django15,
|
||||||
|
py27-django15,
|
||||||
|
py26-django14,
|
||||||
|
py27-django14,
|
||||||
|
|
||||||
|
[testenv]
|
||||||
|
commands=
|
||||||
|
python manage.py test
|
||||||
|
|
||||||
|
# Build configurations
|
||||||
|
|
||||||
|
[testenv:py26-django15]
|
||||||
|
basepython=python2.6
|
||||||
|
deps=
|
||||||
|
django==1.5
|
||||||
|
|
||||||
|
[testenv:py27-django15]
|
||||||
|
basepython=python2.7
|
||||||
|
deps=
|
||||||
|
django==1.5
|
||||||
|
|
||||||
|
[testenv:py26-django14]
|
||||||
|
basepython=python2.6
|
||||||
|
deps=
|
||||||
|
django==1.4.5
|
||||||
|
|
||||||
|
[testenv:py27-django14]
|
||||||
|
basepython=python2.7
|
||||||
|
deps=
|
||||||
|
django==1.4.5
|
||||||
|
|
||||||
Loading…
Reference in New Issue