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 af5ce09 commit f26048fCopy full SHA for f26048f
upath/tests/test_core.py
@@ -8,8 +8,10 @@
8
from upath.tests.cases import BaseTests
9
10
11
-@pytest.mark.skipif(sys.platform != "linux",
12
- reason="only run test if Linux Machine")
+@pytest.mark.skipif(
+ sys.platform.startswith("win"),
13
+ reason="don't run test on Windows",
14
+)
15
def test_posix_path(local_testdir):
16
assert isinstance(UPath(local_testdir), pathlib.PosixPath)
17
@@ -86,6 +88,10 @@ def test_new_method(local_testdir):
86
88
assert isinstance(path, pathlib.Path)
87
89
90
91
92
93
94
+) # need to fix windows tests here
95
class TestFSSpecLocal(BaseTests):
96
@pytest.fixture(autouse=True)
97
def path(self, local_testdir):
0 commit comments