-
I am using My "pyproject.toml" looks like a bit like this:
And my "tox.ini" looks a bit like this:
Running Is it possible to exclude those? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Afaik not with tox 3, but with the upcoming version 4 you can use labels, and then group environments. https://tox.wiki/en/rewrite/config.html#labels Still, it won't have a mechanism for exclusion, but rather one for inclusion. So you could then run Please note, there is no ETA for tox 4 yet. |
Beta Was this translation helpful? Give feedback.
Afaik not with tox 3, but with the upcoming version 4 you can use labels, and then group environments.
https://tox.wiki/en/rewrite/config.html#labels
Still, it won't have a mechanism for exclusion, but rather one for inclusion.
So you could then run
tox -m all-but-docs
.Please note, there is no ETA for tox 4 yet.