Skip to content

Commit 06b6d38

Browse files
authored
Use allowlist_externals instead of whitelist_externals (#46)
Tox's whitelist_externals has been removed in favour of allowlist_externals, which led to `rm` not being considered part of the allow-list, and the tests failing with: rm is not allowed, use allowlist_externals to allow it We already had the right commands in the allow-list, but we were just using the wrong variable name in tox.ini.
1 parent da59ce3 commit 06b6d38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ envlist = py3
55
docs
66

77
[testenv]
8-
whitelist_externals = rm
8+
allowlist_externals =
9+
rm
910
make
1011

1112
commands =

0 commit comments

Comments
 (0)