forked from celery/django-celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
32 lines (27 loc) · 999 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tox]
envlist = py24,py25,py26,py27
[testenv]
distribute = True
sitepackages = False
commands = nosetests
[testenv:py24]
basepython = python2.4
commands = pip -E {envdir} install -r contrib/requirements/default.txt
pip -E {envdir} install -r contrib/requirements/test.txt
pip -E {envdir} install pysqlite
python setup.py citest
[testenv:py25]
basepython = python2.5
commands = pip -E {envdir} install -r contrib/requirements/default.txt
pip -E {envdir} install -r contrib/requirements/test.txt
python setup.py citest
[testenv:py26]
basepython = python2.6
commands = pip -E {envdir} install -r contrib/requirements/default.txt
pip -E {envdir} install -r contrib/requirements/test.txt
python setup.py citest
[testenv:py27]
basepython = python2.7
commands = pip -E {envdir} install -r contrib/requirements/default.txt
pip -E {envdir} install -r contrib/requirements/test.txt
python setup.py citest