Skip to content

Commit ccc964d

Browse files
committed
skip failing mount test on windows
1 parent 0aab733 commit ccc964d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

fileformats/core/tests/test_fs_mount_identifier.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,9 @@ def test_parse_mount_table(output, exit_code, expected):
280280
assert FsMountIdentifier.parse_mount_table(exit_code, output) == expected
281281

282282

283+
@pytest.mark.skipIf(
284+
platform.system() == "Windows", reason="Windows does not have mount table"
285+
)
283286
def test_mount_check():
284287
fake_table = [("/", "ext4"), ("/scratch/tmp", "ext4"), ("/scratch", "cifs")]
285288
cifs_targets = [

0 commit comments

Comments
 (0)