Skip to content

Commit

Permalink
Do pass posargs to tox invoction
Browse files Browse the repository at this point in the history
So I could do

 tox -- -k test_basic --pdb -s -v

to limit execution and make it more verbose
  • Loading branch information
yarikoptic committed Nov 22, 2024
1 parent 04e9681 commit 66eb2da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 66eb2da

Please sign in to comment.