I might be way off here, but if you want to skip test you can create a
patch with this above the class or function you want to skip.

--
@pytest.mark.skip(reason="no way of currently testing this")
--

More info here [1]
This will of course skip the tests at build time as well.

I also saw some tests that was marked '@pytest.mark.slow'. These can also
be skipped using 'pytest -k-slow' though you might skip over more tests than you want.

I must admit I'm on thin ice here, cause I don't even know how your script runs..


[1]: https://docs.pytest.org/en/latest/skipping.html#skip

Reply via email to