From 66eb2da451326be010043a69faaa2a113c2328d7 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Fri, 22 Nov 2024 16:49:42 -0500 Subject: [PATCH] Do pass posargs to tox invoction So I could do tox -- -k test_basic --pdb -s -v to limit execution and make it more verbose --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 2876ddeffe..0c6a751edf 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ env_list = unitest,type,dictionaries [testenv:unitest] description = run unit tests extras = dev -commands = pytest --cov=codespell_lib codespell_lib +commands = pytest --cov=codespell_lib {posargs} codespell_lib [testenv:type] description = run type checks