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: If39d3834724ff3116a2a5ee1ae0974148c339b79
This commit is contained in:
likui 2021-06-03 17:00:18 +08:00
parent ab9e5885e0
commit 77bb97272e
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[tox]
envlist = py38,pep8,cover,api-ref,releasenotes,bandit,fakemodetests
minversion = 2.0
minversion = 3.18.0
skipsdist = True
[testenv]
@ -21,7 +21,7 @@ commands = find ./trove -type f -name "*.pyc" -delete
rm -f trove_test.sqlite
stestr run --serial {posargs}
stestr slowest
whitelist_externals = find
allowlist_externals = find
rm
bash