Skip to content

Commit

Permalink
skip test in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Dec 7, 2023
1 parent 99b61c3 commit 5893956
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fsspec/implementations/tests/test_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down Expand Up @@ -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():
Expand Down

0 comments on commit 5893956

Please sign in to comment.