kuryr-tempest-plugin/tox.ini
Daniel Mellado 397aaaef71 Apply cap from upper reqs
Upper reqs limits weren't applied to the tox environment for the kuryr
tempest plugin. This commit sets that on the tox.ini file.

Change-Id: Icc34350341e678513095bdb8d78c7c005ed3ab13
2018-04-16 09:25:10 +00:00

32 lines
747 B
INI

[tox]
envlist = py35,py27,pep8,releasenotes
minversion = 1.6
skipsdist = True
[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}
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = ostestr {posargs}
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY OS_*
[testenv:venv]
commands = {posargs}
passenv = OS_*
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:pep8]
commands =
flake8 {posargs}
[flake8]
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,*lib/python*,*egg,tools,doc