mirror of https://github.com/celery/kombu.git
Drop distribute dependencies
distribute was merged back into setuptools-0.7 and deprecated therefore.
This commit is contained in:
parent
b68f8050c7
commit
9a2fe5da9e
|
@ -1,4 +1,4 @@
|
|||
distribute
|
||||
setuptools>=0.7
|
||||
nose
|
||||
nose-cover3
|
||||
mock>=0.7.0
|
||||
|
|
15
tox.ini
15
tox.ini
|
@ -2,12 +2,23 @@
|
|||
envlist = py25,py26,py27,py32,pypy
|
||||
|
||||
[testenv]
|
||||
distribute = True
|
||||
sitepackages = False
|
||||
commands = nosetests
|
||||
|
||||
[testenv:py33]
|
||||
recreate = True
|
||||
changedir = .tox
|
||||
basepython = python3.3
|
||||
deps = -r{toxinidir}/requirements/default.txt
|
||||
-r{toxinidir}/requirements/test3.txt
|
||||
-r{toxinidir}/requirements/test-ci.txt
|
||||
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
|
||||
pip install -U -r{toxinidir}/requirements/dev.txt
|
||||
nosetests -vds kombu.tests \
|
||||
--with-xunit \
|
||||
--xunit-file={toxinidir}/nosetests.xml
|
||||
|
||||
[testenv:py32]
|
||||
distribute= True
|
||||
recreate = True
|
||||
basepython = python3.2
|
||||
changedir = .tox
|
||||
|
|
Loading…
Reference in New Issue