OpenStack Release Bot
e07704d331
The new stable upper-constraints file is only available after the openstack/requirements repository is branched. This will happen around the RC1 timeframe. Recheck and merge this change once the requirements repository has been branched. The CI system will work with this patch before the requirements repository is branched because zuul configues the job to run with a local copy of the file and defaults to the master branch. However, accepting the patch will break the test configuration on developers' local systems, so please wait until after the requirements repository is branched to merge the patch. Change-Id: If9ce98ce6ebf3bc6c6a70d507b4082b84ea99b80
74 lines
2.0 KiB
INI
74 lines
2.0 KiB
INI
[tox]
|
|
minversion = 2.3.1
|
|
envlist = py27,py35,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
usedevelop = True
|
|
install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/queens} {opts} {packages}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = sh
|
|
find
|
|
rm
|
|
commands = find {toxinidir} -type f -name "*.py[c|o]" -delete
|
|
rm -f .testrepository/times.dbm
|
|
ostestr '{posargs}'
|
|
|
|
[testenv:fullstack]
|
|
basepython = python2.7
|
|
setenv = OS_TEST_PATH=./kuryr/tests/fullstack
|
|
passenv = OS_*
|
|
|
|
[testenv:debug]
|
|
commands = oslo_debug_helper {posargs}
|
|
|
|
[testenv:debug-py27]
|
|
basepython = python2.7
|
|
commands = oslo_debug_helper {posargs}
|
|
|
|
[testenv:debug-py35]
|
|
basepython = python3.5
|
|
commands = oslo_debug_helper {posargs}
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
commands =
|
|
rm -f .testrepository/times.dbm
|
|
python setup.py test --coverage --testr-args='{posargs}' \
|
|
--coverage-package-name=kuryr_kubernetes
|
|
coverage report
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[flake8]
|
|
show-source = true
|
|
enable-extensions = H106,H203
|
|
|
|
# TODO(dougw) neutron/tests/unit/vmware exclusion is a temporary services split hack
|
|
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools,.ropeproject,rally-scenarios,neutron/tests/unit/vmware*,releasenotes
|
|
|
|
[testenv:pylint]
|
|
deps =
|
|
{[testenv]deps}
|
|
pylint
|
|
commands =
|
|
pylint --rcfile=.pylintrc --output-format=colorized {posargs:neutron}
|
|
|
|
[hacking]
|
|
import_exceptions = neutron.i18n
|
|
local-check-factory = neutron_lib.hacking.checks.factory
|
|
|
|
[testenv:genconfig]
|
|
commands = oslo-config-generator --config-file=etc/oslo-config-generator/kuryr.conf
|
|
|
|
[testenv:releasenotes]
|
|
commands = sphinx-build -a -W -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|