Changed minversion in tox to 3.18.0

The patch bumps min version of tox to 3.18.0 in order to
replace tox's whitelist_externals by allowlist_externals option:
https://github.com/tox-dev/tox/blob/master/docs/changelog.rst#v3180-2020-07-23

Change-Id: Ia9928d8fe69a6a3c593ff9b5846ef3123e7dda26
This commit is contained in:
likui 2021-06-03 17:01:07 +08:00
parent cd68986948
commit 5ce2e998b9
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
[tox]
envlist = py38,pep8
minversion = 3.1.1
minversion = 3.18.0
skipsdist = True
ignore_basepython_conflict = True
@ -22,7 +22,7 @@ deps =
-r{toxinidir}/test-requirements.txt
commands = find . -type f -name "*.pyc" -delete
stestr run {posargs}
whitelist_externals = find
allowlist_externals = find
rm
[testenv:debug]