Skip to content

Commit 4ca8353

Browse files
committed
skips gcs path tests on windows
1 parent 3b31033 commit 4ca8353

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

upath/tests/implementations/test_gcs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import pytest
2+
import sys
23

34
from upath import UPath
45
from upath.implementations.gcs import GCSPath
56
from upath.errors import NotDirectoryError
67
from upath.tests.cases import BaseTests
78

89

10+
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Windows bad")
911
@pytest.mark.usefixtures("path")
1012
class TestGCSPath(BaseTests):
1113
@pytest.fixture(autouse=True, scope="function")

0 commit comments

Comments
 (0)