mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
skip on Win/Mac
This commit is contained in:
parent
38803cbe13
commit
654396f31c
1 changed files with 6 additions and 1 deletions
|
@ -17,6 +17,12 @@ except ImportError:
|
|||
# fmt: off
|
||||
|
||||
|
||||
pytestmark = [
|
||||
pytest.mark.skip_on_windows(reason="Do not run these tests on Windows"),
|
||||
pytest.mark.skip_on_darwin(reason="Do not run these tests on Mac"),
|
||||
]
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def test_interfaces():
|
||||
return [
|
||||
|
@ -843,7 +849,6 @@ def test_interfaces():
|
|||
# fmt: on
|
||||
|
||||
|
||||
@pytest.mark.skip_on_windows(reason="Do not run these tests on Windows")
|
||||
@pytest.fixture
|
||||
def configure_loader_modules():
|
||||
return {debian_ip: {}}
|
||||
|
|
Loading…
Add table
Reference in a new issue