libra/tox.ini
Andrew Hutchings f117e19565 API: Add wsme for POST processing
Also use wsme for validation

Change-Id: I083b6016b9a5d1c1351f20b64fcf5b324a287dee
2013-05-18 11:21:50 +01:00

29 lines
570 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,build
[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'
[testenv:venv]
commands = {posargs}