From 58939569ccf6affbc99ce5764060dff08cd6bf06 Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio Date: Thu, 7 Dec 2023 10:28:50 -0600 Subject: [PATCH] skip test in Windows --- fsspec/implementations/tests/test_local.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fsspec/implementations/tests/test_local.py b/fsspec/implementations/tests/test_local.py index a1e1343fb..2980eb7c7 100644 --- a/fsspec/implementations/tests/test_local.py +++ b/fsspec/implementations/tests/test_local.py @@ -33,7 +33,6 @@ ), } - csv_files = { ".test.fakedata.1.csv": (b"a,b\n" b"1,2\n"), ".test.fakedata.2.csv": (b"a,b\n" b"3,4\n"), @@ -995,11 +994,12 @@ def test_cp_two_files(tmpdir): ] +@pytest.mark.skipif(WIN, reason="Windows does not support colons in filenames") def test_issue_1447(): files_with_colons = { ".local:file:with:colons.txt": b"content1", - ".colons-after-extension.txt:after": b"content3", - ".colons-after-extension/file:colon.txt:before/after": b"content2", + ".colons-after-extension.txt:after": b"content2", + ".colons-after-extension/file:colon.txt:before/after": b"content3", } with filetexts(files_with_colons, mode="b"): for file, contents in files_with_colons.items():