From 38b1efccac1257bda3fc5ac1758935a9c5b7ba37 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Wed, 8 Dec 2021 16:51:02 +0000 Subject: [PATCH] tox: Allow us to specify a test Let's us run a specific test instead of having to run everything. Signed-off-by: Stephen Finucane --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 274dcb4..044dd21 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,7 @@ deps = click7: click>=7.0,<8.0 click8: click>=8.0,<9.0 commands = - coverage run --source={toxinidir}/sphinx_click -m unittest discover -s tests/ + coverage run --source={toxinidir}/sphinx_click -m unittest {posargs} coverage report pip_pre = pre: true