Skip to content

Commit 744a8c2

Browse files
committed
merge
1 parent 51b08e7 commit 744a8c2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

upath/tests/implementations/test_gcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from upath.tests.cases import BaseTests
88

99

10-
@pytest.mark.skipif(not sys.platform == "linux", reason="Only linux")
10+
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Windows bad")
1111
@pytest.mark.usefixtures("path")
1212
class TestGCSPath(BaseTests):
1313
@pytest.fixture(autouse=True, scope="function")

upath/tests/test_core.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
reason="don't run test on Windows",
1515
)
1616
def test_posix_path(local_testdir):
17-
print(type(UPath(local_testdir)))
1817
assert isinstance(UPath(local_testdir), pathlib.PosixPath)
1918

2019

@@ -191,8 +190,6 @@ def test_copy_path():
191190
path = UPath("gcs://bucket/folder", anon=True)
192191
copy_path = UPath(path)
193192

194-
print(type(path), type(copy_path))
195-
196193
assert type(path) == type(copy_path)
197194
assert str(path) == str(copy_path)
198195
assert path._drv == copy_path._drv

0 commit comments

Comments
 (0)