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: Ic1e7a52cd6f4bd222a330a33160391b0d9438c81
This commit is contained in:
wu.shiming
2021-05-31 15:31:30 +08:00
committed by Arnaud M
parent f327bfd773
commit 1bd5f839d1

View File

@@ -1,6 +1,6 @@
[tox]
envlist = py3,pep8
minversion = 3.1.1
minversion = 3.18.0
ignore_basepython_conflict = True
[testenv]
@@ -26,7 +26,7 @@ commands =
rm -f .testrepository/times.dbm
find . -type f -name "*.pyc" -delete
stestr run --concurrency 1 --slowest {posargs}
Allowlist_externals =
allowlist_externals =
find
rm
[testenv:cover]