44544e587a
In reddwarf's setup.py, the method setuptool.setup() currently accepts a parameter for namespace_packages, and it shouldn't. Change-Id: Ica1fbebd5cbd5943c3a1b322d14a280737bc0542 fixes: bug #1136189
33 lines
701 B
INI
33 lines
701 B
INI
[tox]
|
|
envlist = py26,py27,pep8
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/tools/pip-requires
|
|
-r{toxinidir}/tools/test-requires
|
|
setuptools_git>=0.4
|
|
commands = {envpython} run_tests.py
|
|
python setup.py testr --slowest
|
|
|
|
[tox:jenkins]
|
|
sitepackages = True
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
deps = pep8
|
|
setuptools_git>=0.4
|
|
commands = pep8 --repeat --show-source --ignore=E125 --exclude=.venv,.tox,dist,doc,openstack,*egg reddwarf
|
|
|
|
[testenv:cover]
|
|
basepython = python2.7
|
|
commands =
|
|
coverage erase
|
|
python setup.py testr --coverage
|
|
coverage run -a run_tests.py
|
|
coverage html
|
|
coverage report
|
|
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|