ea8194464d
This updates the envlist to include modern versions of python. It doesn't really mean anything except for you run tox without specifying an environment it will now run py35 and py36 instead of py34 (which isn't used anywhere anymore) Change-Id: I5b61677d4ee7a2c5dbf29755c03243cba0e6446e
60 lines
1.7 KiB
INI
60 lines
1.7 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py27,py35,py36,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U --force-reinstall {opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
OS_STDOUT_CAPTURE=1
|
|
OS_STDERR_CAPTURE=1
|
|
OS_TEST_TIMEOUT=500
|
|
whitelist_externals = find
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
stestr run {posargs}
|
|
stestr slowest
|
|
|
|
[testenv:pep8]
|
|
sitepackages = False
|
|
commands =
|
|
flake8 {posargs}
|
|
|
|
[testenv:cover]
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
PYTHON=coverage run --source subunit2sql --parallel-mode
|
|
commands =
|
|
stestr run {posargs}
|
|
coverage combine
|
|
coverage html -d cover
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
|
|
[flake8]
|
|
# E125 is deliberately excluded. See https://github.com/jcrocholl/pep8/issues/126
|
|
# E123 skipped because it is ignored by default in the default pep8
|
|
# E129 skipped because it is too limiting when combined with other rules
|
|
# H305 skipped because it is inconsistent between python versions
|
|
# E711 skipped because sqlalchemy filter() requires using == instead of is
|
|
ignore = E125,E123,E129,H305,E711
|
|
exclude = .venv,.git,.tox,dist,doc,*egg,build,releasenotes
|
|
|
|
[testenv:generate_samples]
|
|
commands =
|
|
oslo-config-generator --config-file config-generator/subunit2sql.conf
|
|
oslo-config-generator --config-file config-generator/sql2subunit.conf
|
|
oslo-config-generator --config-file config-generator/subunit2sql-db-manage.conf
|
|
|
|
[testenv:releasenotes]
|
|
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|