3477dfad00
python2 is EOL. OpenStack and Zuul both are python3 only. Drop the Python-2 CentOS 7 build host testing, including the tripleo centos-7 train job. Drop the old openstack-python-jobs template and move to specific version templates for what we support. Drop upper-constraints from the py35 environment, as master of requirements is now using python 3.6-only libraries. Drop the Xenial tests for similar reasons (rather than making some sort of forced install); we are keeping Python 3.5 support just for Zuul compatability at this point so a tox run is enough. Depends-On: https://review.opendev.org/729787 Depends-On: https://review.opendev.org/729508 Change-Id: I6d90754cb4b7217b10ae777d414c03466b751761
77 lines
2.0 KiB
INI
77 lines
2.0 KiB
INI
[tox]
|
|
envlist = pep8,pylint,py35,py36,py37,py38
|
|
minversion = 2.0
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install {opts} {packages}
|
|
deps=
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands=
|
|
python setup.py test --slowest --testr-args='{posargs}'
|
|
passenv=
|
|
DUMP_CONFIG_GRAPH
|
|
|
|
[testenv:bindep]
|
|
deps = bindep
|
|
commands = bindep test
|
|
|
|
[testenv:pep8]
|
|
basepython = python3
|
|
commands =
|
|
flake8 {posargs}
|
|
dib-lint
|
|
|
|
[testenv:pylint]
|
|
basepython = python3
|
|
commands = pylint --rcfile pylint.cfg diskimage_builder
|
|
|
|
[testenv:venv]
|
|
basepython = python3
|
|
commands = {posargs}
|
|
|
|
[testenv:func]
|
|
envdir = {toxworkdir}/venv
|
|
commands = {toxinidir}/tests/run_functests.sh {posargs}
|
|
|
|
[testenv:cover]
|
|
# NOTE: this is "setup.py test" (*not* testr) which is a pbr wrapper
|
|
# around testr. This understands --coverage-package-name which we
|
|
# need due to underscore issues.
|
|
basepython = python3
|
|
commands = python setup.py test --coverage --coverage-package-name diskimage_builder --testr-args='{posargs}'
|
|
|
|
[testenv:docs]
|
|
deps= -r{toxinidir}/doc/requirements.txt
|
|
basepython = python3
|
|
whitelist_externals =
|
|
rm
|
|
commands =
|
|
rm -rf doc/build
|
|
sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html {posargs}
|
|
|
|
[testenv:releasenotes]
|
|
deps = {[testenv:docs]deps}
|
|
basepython = python3
|
|
commands = sphinx-build -a -W -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[flake8]
|
|
ignore = E125,E126,E127,H202,H803,W503,W504
|
|
exclude = .venv,.git,.tox,dist,doc/build,doc/source,*lib/python*,*egg,build,conf.py
|
|
|
|
[testenv:lower-constraints]
|
|
basepython = python3
|
|
deps =
|
|
-c{toxinidir}/lower-constraints.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
# Run without upper-constraints on python3.5, as since Victoria that
|
|
# now is python3.6 only
|
|
[testenv:py35]
|
|
basepython = python3.5
|
|
deps = {[testenv:lower-constraints]deps}
|