From f278c942d545f92597d29bb094a342de174ef5d0 Mon Sep 17 00:00:00 2001 From: James Addison <55152140+jayaddison@users.noreply.github.com> Date: Tue, 22 Nov 2022 15:43:51 +0000 Subject: [PATCH] tox: permit positional arguments when running 'unittest'-based unit tests (#686) --- 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