6522cd1175
py.test is used in many of our projects and much more advanced than testrepository also it allowed to catch a small bug - driver do not work on a copy of a data so it modifies it also for other components Change-Id: I1273383d7e5aba110b5c74cd66095afd6e226a42 Implements: blueprint volume-manager-refactoring
43 lines
891 B
INI
43 lines
891 B
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = py26,py27,pep8
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install --allow-external -U {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
py.test -vv {posargs:fuel_agent/tests}
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
deps = hacking==0.10.2
|
|
commands =
|
|
flake8 {posargs:fuel_agent}
|
|
|
|
[testenv:cover]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
commands =
|
|
py.test --cov fuel_agent {posargs:fuel_agent/tests}
|
|
|
|
[testenv:venv]
|
|
commands = {posargs:}
|
|
|
|
[testenv:devenv]
|
|
envdir = devenv
|
|
usedevelop = True
|
|
|
|
[flake8]
|
|
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,docs
|
|
show-pep8 = True
|
|
show-source = True
|
|
count = True
|
|
|
|
[hacking]
|
|
import_exceptions = fuel_agent.openstack.common.gettextutils._,testtools.matchers
|