mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-10 14:24:44 +00:00
Add tox configuration.
This commit is contained in:
parent
c7b8b77e86
commit
11a2cbe46f
1 changed files with 31 additions and 0 deletions
31
tox.ini
Normal file
31
tox.ini
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
[tox]
|
||||
distribute = False
|
||||
envlist =
|
||||
py26-1.4.X, py27-1.4.X,
|
||||
py26-1.3.X, py27-1.3.X,
|
||||
|
||||
[testenv]
|
||||
downloadcache = {toxworkdir}/_download/
|
||||
commands =
|
||||
{envpython} runtests.py
|
||||
|
||||
|
||||
[testenv:py26-1.4.X]
|
||||
basepython = python2.6
|
||||
deps =
|
||||
Django==1.4.2
|
||||
|
||||
[testenv:py27-1.4.X]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
Django==1.4.2
|
||||
|
||||
[testenv:py26-1.3.X]
|
||||
basepython = python2.6
|
||||
deps =
|
||||
Django==1.3.4
|
||||
|
||||
[testenv:py27-1.3.X]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
Django==1.3.4
|
||||
Loading…
Reference in a new issue