mirror of https://github.com/celery/kombu.git
Adds Python 3.4 target for Tox
This commit is contained in:
parent
54198c62ed
commit
015d9c122d
11
tox.ini
11
tox.ini
|
@ -3,12 +3,23 @@ envlist =
|
|||
2.6,
|
||||
2.7,
|
||||
3.3,
|
||||
3.4,
|
||||
pypy
|
||||
|
||||
[testenv]
|
||||
sitepackages = False
|
||||
commands = nosetests
|
||||
|
||||
[testenv:3.4]
|
||||
basepython = python3.4
|
||||
deps = -r{toxinidir}/requirements/default.txt
|
||||
-r{toxinidir}/requirements/test3.txt
|
||||
-r{toxinidir}/requirements/test-ci3.txt
|
||||
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
|
||||
pip install -U -r{toxinidir}/requirements/dev.txt
|
||||
nosetests -vds kombu.tests \
|
||||
--with-coverage --cover-inclusive --cover-erase []
|
||||
|
||||
[testenv:3.3]
|
||||
basepython = python3.3
|
||||
deps = -r{toxinidir}/requirements/default.txt
|
||||
|
|
Loading…
Reference in New Issue