trivial: Cleanup tox.ini

Update the minversion parameter to use the python -m pip to install
python packages:

https://tox.readthedocs.io/en/latest/changelog.html#id185

Also Inherit the jobs requirements to simplify maintainance.

Change-Id: Ib6e94fa9f822830242a99f6690349569626f1931
This commit is contained in:
Hervé Beraud 2020-02-11 15:40:53 +01:00
parent 0371869dd3
commit 12fcb067c4
1 changed files with 4 additions and 9 deletions

13
tox.ini
View File

@ -1,5 +1,5 @@
[tox] [tox]
minversion = 3.1 minversion = 3.2.0
envlist = py37,pep8 envlist = py37,pep8
ignore_basepython_conflict = true ignore_basepython_conflict = true
@ -7,14 +7,11 @@ ignore_basepython_conflict = true
basepython = python3 basepython = python3
deps = deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/test-requirements.txt -r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
commands = stestr run --slowest {posargs} commands = stestr run --slowest {posargs}
[testenv:pep8] [testenv:pep8]
deps = deps = {[testenv]deps}
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/test-requirements.txt
commands = commands =
flake8 flake8
# Run security linter # Run security linter
@ -52,9 +49,7 @@ import_exceptions =
[testenv:releasenotes] [testenv:releasenotes]
whitelist_externals = rm whitelist_externals = rm
deps = deps = {[testenv:docs]deps}
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/doc/requirements.txt
commands = commands =
rm -rf releasenotes/build rm -rf releasenotes/build
sphinx-build -a -E -W -d releasenotes/build/doctrees --keep-going -b html releasenotes/source releasenotes/build/html sphinx-build -a -E -W -d releasenotes/build/doctrees --keep-going -b html releasenotes/source releasenotes/build/html