Replies: 2 comments 5 replies
-
Does this answer help you? |
Beta Was this translation helpful? Give feedback.
2 replies
-
OK I'll try to rephrase. I'd like to run tox on windows just like on the other platforms: Is there a way, with tox 3 or for the future tox 4, to have conditional settings that are not factors? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With tox 3, if a setting of a testenv depends on the platform (say windows), it seems that the only solution to declare this specialized env is to add a factor (say win). In my projects I thus have to differentiate how the envs are executed
tox -e py38
on linux and macostox -e py38-win
on windowsTo be clear, executing
tox -e py38
on windows cannot work.This applies to most of the envs and is quite cumbersome. Would it be possible to have conditional settings that do not depend on factor, at least for the platform?
Beta Was this translation helpful? Give feedback.
All reactions