From 742e11fa42eb67810330263fb93a3fa909d51c34 Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Sun, 7 May 2023 12:46:25 +0800 Subject: [PATCH] Allow tox to execute /bin/sh in test commands Tox 4.x requires all external commands to be specifically listed as allowed before it will let them be run during the tests. See-also: https://tox.wiki/en/4.0.0/user_guide.html#system-overview See-also: https://tox.wiki/en/4.0.0/config.html#allowlist_externals Fixes: https://bugs.debian.org/1035639 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index c4872dc..94c2262 100644 --- a/tox.ini +++ b/tox.ini @@ -2,6 +2,7 @@ envlist = py [testenv] +allowlist_externals = /bin/sh commands = /bin/sh t/test-unconflicted /bin/sh t/test-conflicted