Skip to content

Commit

Permalink
unless_on_windows
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcmarrow committed Sep 29, 2023
1 parent 3a38132 commit dd83b91
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/pytests/functional/modules/test_win_file.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import os

import pytest
from salt.modules import win_file

from salt.modules import win_file

pytestmark = [
pytest.mark.skip_on_windows,
pytest.mark.skip_unless_on_windows,
]


def test_is_link(tmp_path):
tmp_path = str(tmp_path)
assert win_file.is_link(tmp_path) is True
Expand Down

0 comments on commit dd83b91

Please sign in to comment.