trove/tox.ini
Tim Simpson 8ae94f2566 Specify Python 2.7 for cover environment in Tox.
Fixed bug #1123261

Change-Id: I0066176be489a94a99d48bba4b3548ae348809cf
2013-02-12 11:21:30 -06:00

35 lines
838 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
coverage run -m subunit.run discover ./reddwarf/tests/unittests
# replace with above line once the python path issue is resolved
# python setup.py testr --coverage
coverage run -a run_tests.py
coverage html
coverage report
[testenv:venv]
commands = {posargs}