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