-
Looks like this change: export PYTEST_ARGS = '-m "not scale"' passenv = Is this intended? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
This seems like weird syntax. If you want PYTEST_ARGS to be passed to the commands executed by tox, you would put
in the tox.ini. Why are you using |
Beta Was this translation helpful? Give feedback.
-
This seems like a broken configuration where the validation caught it. You're welcome 😊 |
Beta Was this translation helpful? Give feedback.
-
Thanks for the fast response and your help! |
Beta Was this translation helpful? Give feedback.
-
My tox.ini files are also affected by the change to the parsing of
(from https://github.com/sagemath/sage/blob/develop/pkgs/sagemath-categories/tox.ini#L29) |
Beta Was this translation helpful? Give feedback.
This seems like weird syntax. If you want PYTEST_ARGS to be passed to the commands executed by tox, you would put
in the tox.ini. Why are you using
{env:PYTEST_ARGS}
? {env:...} is for including the value of the environment variable into tox configuration.