c30b3403ef
launchpadlib 0.0.1.dev533 requires lazr.restfulclient, which contains python2-only syntax (at least as of lazr.restfulclient 0.13.1). On a system where "tox" uses python3 (eg: Debian "stretch"), the default basepython will be python3, and venv creation (pip building wheels) will fail on lazr.restfulclient. This patch forces basepython=python2.7 across all testenvs. Change-Id: I44f4c6f819550a8a586ae19bbed45fc9b67dd1c0
63 lines
1.7 KiB
INI
63 lines
1.7 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = validate,pep8,bashate
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
--allow-external lazr.authentication
|
|
--allow-insecure lazr.authentication
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
# launchpadlib 0.0.1.dev533 requires lazr.restfulclient, which is
|
|
# py2-only (as of lazr.restfulclient 0.13.1)
|
|
basepython = python2.7
|
|
|
|
[testenv:validate]
|
|
commands = validate-request {posargs}
|
|
|
|
[testenv:list-changes]
|
|
setenv =
|
|
PYTHONUNBUFFERED=1
|
|
commands = list-changes {posargs}
|
|
|
|
[testenv:pep8]
|
|
deps = flake8
|
|
commands = flake8
|
|
|
|
[testenv:bashate]
|
|
deps = bashate
|
|
whitelist_externals = bash
|
|
commands = bash -c "find {toxinidir} \
|
|
-not \( -type d -name .?\* -prune \) \ # prune all 'dot' dirs
|
|
-type f \ # only files
|
|
-not -name \*~ \ # skip editors, readme, etc
|
|
-not -name \*.md \
|
|
-name \*.sh \
|
|
-print0 | xargs -0 bashate -v"
|
|
|
|
[testenv:venv]
|
|
deps = .[sphinxext]
|
|
commands = {posargs}
|
|
|
|
[testenv:history]
|
|
commands = {toxinidir}/tools/build_tag_history.sh {toxinidir}
|
|
|
|
[testenv:cover]
|
|
#commands = python setup.py testr --coverage --testr-args='{posargs}'
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
deps = .[sphinxext]
|
|
|
|
[flake8]
|
|
# H803 skipped on purpose per list discussion.
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
# E501 skipped because some of the code files include templates
|
|
# that end up quite wide
|
|
show-source = True
|
|
ignore = E123,E125,H803,E501
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,release-tag-*
|