mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
fix skip syntax
This commit is contained in:
parent
a8bcef36cb
commit
6332632ddd
1 changed files with 2 additions and 8 deletions
|
@ -8,16 +8,10 @@ import textwrap
|
|||
import pytest
|
||||
|
||||
import salt.modules.xfs as xfs
|
||||
import salt.utils.platform
|
||||
|
||||
pytestmark = [
|
||||
pytest.mark.skipif(
|
||||
salt.utils.platform.is_windows(), reason="xfs not available on windows"
|
||||
),
|
||||
pytest.mark.skipif(
|
||||
salt.utils.platform.is_darwin(),
|
||||
reason="xfs not available on darwin.",
|
||||
),
|
||||
pytest.mark.skip_on_windows(reason="xfs not available on windows"),
|
||||
pytest.mark.skip_on_darwin(reason="xfs not available on darwin."),
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue