summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kajinami <tkajinam@redhat.com>2022-05-22 22:22:56 +0900
committerTakashi Kajinami <tkajinam@redhat.com>2022-05-22 22:23:24 +0900
commit0732060995c15a95972b452cfb420228443223a9 (patch)
tree69fd247a59607c41d3184a1169194015b4e7a635
parenta9abc54844fd7deb25e6860f1114dd22db367281 (diff)
downloadpython-heatclient-0732060995c15a95972b452cfb420228443223a9.tar.gz
Bump tox minversion to 3.18.0
Since tox 3.18.0, the whitelist_externals option has been deprecated in favor of the new allow_list_externals option[1]. This change bumps the minversion of tox so that we can replace the deprecated option. [1] https://github.com/tox-dev/tox/blob/master/docs/changelog.rst#v3180-2020-07-23 Change-Id: I287ce309adf5a02e9eac3a285666c23f4eeb9d36
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 1e3b7be..a58c941 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
[tox]
envlist = pypy,py39,pep8
ignore_basepython_conflict = true
-minversion = 3.1.0
+minversion = 3.18.0
skipsdist = True
[testenv]
@@ -14,7 +14,7 @@ deps =
-r{toxinidir}/test-requirements.txt
commands = find . -type f -name "*.py[c|o]" -delete
stestr run --slowest {posargs}
-whitelist_externals = find
+allowlist_externals = find
[testenv:debug]
commands = oslo_debug_helper -t heatclient/tests {posargs}