Arbitrary skip logic? #3617
-
I've been working on a project recently (pyuvm) that uses tox for testing. One of it's dependencies is cocotb. cocotb < 2.0 did not test or explicitly support ARM Macs and there are compilation issues on those platforms with those older versions of cocotb. I would like to expand the notion of skipping unsupported platforms that tox does to include the architecture in the logic. But seeing as tox only tests Is there a feature in tox to write arbitrary skip logic for a particular env? Or will I have to do this logic in the env's command to force an early pass in lieu of "skip"? This same problem could be expanded to particular versions of an OS, such as supported in Mac 13 and 14, but not 15 and 26, etc. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I don't think we have anything built in but you probably can write an inline plugin to achieve that. |
Beta Was this translation helpful? Give feedback.
I think it is niche enough that I don't think it's worth adding it to the core you should instead achieve it via the plugin system.