6e7ddfaf21
Change-Id: I1d316d2af52ff6d765d76c091185a36bd508ca8d
63 lines
1.7 KiB
INI
63 lines
1.7 KiB
INI
[tox]
|
|
minversion = 2.3.1
|
|
envlist = py36,py37,py38,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
PYTHONWARNINGS=default::DeprecationWarning
|
|
LANGUAGE=en_US
|
|
LC_ALL=en_US.utf-8
|
|
whitelist_externals = bash
|
|
find
|
|
rm
|
|
usedevelop = True
|
|
install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
|
|
[testenv:pep8]
|
|
basepython = python3.8
|
|
#commands = /usr/local/bin/flake8 {posargs}
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
commands = python3 setup.py test --coverage --testr-args='{posargs}'
|
|
|
|
[testenv:docs]
|
|
commands =
|
|
rm -fr doc/build
|
|
python3 setup.py build_sphinx
|
|
|
|
[testenv:releasenotes]
|
|
commands =
|
|
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:py36]
|
|
basepython = python3.6
|
|
|
|
[testenv:py37]
|
|
basepython = python3.7
|
|
|
|
[testenv:py38]
|
|
basepython = python3.8
|
|
|
|
[flake8]
|
|
# TODO(dmllr): Analyze or fix the warnings blacklisted below
|
|
# E711 comparison to None should be 'if cond is not None:'
|
|
# E712 comparison to True should be 'if cond is True:' or 'if cond:'
|
|
# H404 multi line docstring should start with a summary
|
|
# H405 multi line docstring summary not separated with an empty line
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
show-source = True
|
|
builtins = _
|
|
#ignore = E711,E712,H404,H405,E123,E125,E901,H301
|
|
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E251,E711,E712,H405,W504,E731,H238,E126,E128,E731,H405,N530,W504,E129,E741,W503,F821,F999,F841,E402,W605
|
|
|
|
exclude = .venv,.git,.tox,dist,doc,etc,*lib/python*,*egg,build
|