Files
libra/tox.ini
David Shrewsbury d99fd6511d Include venv in tox.ini.
This is needed to make tarball generation work.

Change-Id: Iba864f07c69f25fd67ad0b28c7d6155adfb17f2a
2013-04-12 11:13:20 -04:00

29 lines
564 B
INI

[tox]
envlist = py27,pep8
[testenv]
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv:pep8]
deps = flake8
commands = flake8
[testenv:pyflakes]
deps = pyflakes
commands = pyflakes libra
[flake8]
show-source = True
exclude = .venv,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tests
[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'
[testenv:venv]
commands = {posargs}