We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10bb4d0 commit 8ef54b0Copy full SHA for 8ef54b0
fsspec/implementations/tests/test_local.py
@@ -542,10 +542,20 @@ def test_make_path_posix():
542
"abc/def",
543
"",
544
".",
545
- "//server/share",
+ "//server/share/",
546
+ "\\\\server\\share\\",
547
"C:\\",
548
"d:/abc/def",
549
"e:",
550
+ pytest.param(
551
+ "\\\\server\\share",
552
+ marks=[
553
+ pytest.mark.xfail(
554
+ WIN and sys.version_info < (3, 11),
555
+ reason="requires py3.11+ see: python/cpython#96290",
556
+ )
557
+ ],
558
+ ),
559
pytest.param(
560
"f:foo",
561
marks=[pytest.mark.xfail(WIN, reason="unsupported")],
0 commit comments