From 5e602bb9b8db0e4ab06b72c883604a2a44ad08b5 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Fri, 3 Oct 2025 09:41:44 -0400 Subject: [PATCH] Use allowlist_externals instead of whitelist_externals 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. --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4484d3b1..72d5d126 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,8 @@ envlist = py3 docs [testenv] -whitelist_externals = rm +allowlist_externals = + rm make commands =