From 48dff23c82eae81af55fd5cb6204e4cfac40cbda Mon Sep 17 00:00:00 2001 From: James Addison Date: Sun, 20 Nov 2022 16:33:35 +0000 Subject: [PATCH] tox: permit positional arguments when running 'unittest'-based unit tests --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 50fb66f7e..fd8d8a35b 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ isolated_build = true [testenv] deps = -r{toxinidir}/requirements-dev.txt -commands = coverage run -m unittest +commands = coverage run -m unittest {posargs} # The system-provided libxml2 on MacOS is typically outdated and this can lead to lxml parsing issues # Using PyPi-provided binary wheels instead resolves this