a8fb6aa0f4
Respect upper-constraints.txt To prevent pip installing the latest and greatest packages (which may break Bareon), pin the version to those specified in the upper-constraints.txt file from the openstack requirements repo. Fix hacking module version Change hacking version in pep8 tox tests to prevent conflict with other openstack requirements. Change-Id: I44b66529c9efa611abb55a9130d9d23bb6b7f046
60 lines
1.6 KiB
INI
60 lines
1.6 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = py27,py34,func,pep8
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
py.test -vv {posargs:bareon/tests}
|
|
|
|
[testenv:pep8]
|
|
deps = hacking>=0.10.3
|
|
commands =
|
|
flake8 {posargs:bareon}
|
|
flake8 {posargs:contrib/fuel_bootstrap/fuel_bootstrap_cli/fuel_bootstrap}
|
|
|
|
[testenv:cover]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
commands =
|
|
py.test --cov bareon {posargs:bareon/tests}
|
|
|
|
[testenv:venv]
|
|
commands = {posargs:}
|
|
|
|
[testenv:devenv]
|
|
envdir = devenv
|
|
usedevelop = True
|
|
|
|
[testenv:func]
|
|
sitepackages=True
|
|
install_command = pip install --allow-external -U {opts} {packages}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = bash
|
|
passenv = BUILD_ENV SSH_AUTH_SOCK NO_SYNC NO_DIB
|
|
commands =
|
|
bash bareon/tests_functional/image_build/sync_golden_images.sh
|
|
bash bareon/tests_functional/image_build/centos_minimal.sh
|
|
py.test -xvv {posargs:bareon/tests_functional}
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv:genconfig]
|
|
commands =
|
|
oslo-config-generator --config-file etc/oslo-config-generator/bareon.conf
|
|
|
|
[flake8]
|
|
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools,docs
|
|
show-pep8 = True
|
|
show-source = True
|
|
count = True
|
|
|
|
[hacking]
|
|
import_exceptions = testtools.matchers
|