Added skip on Windows for junos test

This commit is contained in:
David Murphy 2023-10-25 10:40:52 -06:00 committed by Gareth J. Greenaway
parent be22292a55
commit a21c1bc8cf

View file

@ -26,6 +26,10 @@ try:
except ImportError:
HAS_JUNOS = False
pytestmark = [
pytest.mark.skip_on_windows(reason="Not supported on Windows"),
]
@pytest.mark.skipif(
not HAS_JUNOS, reason="The junos-eznc and jxmlease modules are required"