mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-16 20:00:23 +00:00
Specify versions more explicitly in tox.ini
This commit is contained in:
parent
3820cf784f
commit
3ec8a905b3
1 changed files with 18 additions and 4 deletions
22
tox.ini
22
tox.ini
|
|
@ -1,13 +1,12 @@
|
|||
[tox]
|
||||
envlist =
|
||||
py26-1.4, py26, py26-trunk,
|
||||
py27-1.4, py27, py27-trunk,py27-nosouth,
|
||||
py26-1.4, py26-1.5, py26-trunk,
|
||||
py27-1.4, py27-1.5, py27-trunk, py27-1.4-nosouth,
|
||||
py32-1.5-nosouth, py32-trunk-nosouth,
|
||||
py33-1.5-nosouth, py33-trunk-nosouth
|
||||
|
||||
[testenv]
|
||||
deps =
|
||||
django == 1.5.1
|
||||
South == 0.7.6
|
||||
coverage == 3.6
|
||||
commands = coverage run -a --branch setup.py test
|
||||
|
|
@ -19,6 +18,13 @@ deps =
|
|||
South == 0.7.6
|
||||
coverage == 3.6
|
||||
|
||||
[testenv:py26-1.5]
|
||||
basepython = python2.6
|
||||
deps =
|
||||
django == 1.5.1
|
||||
South == 0.7.6
|
||||
coverage == 3.6
|
||||
|
||||
[testenv:py26-trunk]
|
||||
basepython = python2.6
|
||||
deps =
|
||||
|
|
@ -33,6 +39,13 @@ deps =
|
|||
South == 0.7.6
|
||||
coverage == 3.6
|
||||
|
||||
[testenv:py27-1.5]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
django == 1.5.1
|
||||
South == 0.7.6
|
||||
coverage == 3.6
|
||||
|
||||
[testenv:py27-trunk]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
|
|
@ -65,7 +78,8 @@ deps =
|
|||
coverage == 3.6
|
||||
|
||||
|
||||
[testenv:py27-nosouth]
|
||||
[testenv:py27-1.5-nosouth]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
django == 1.4.5
|
||||
coverage == 3.6
|
||||
|
|
|
|||
Loading…
Reference in a new issue