File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 77from 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" )
1212class TestGCSPath (BaseTests ):
1313 @pytest .fixture (autouse = True , scope = "function" )
Original file line number Diff line number Diff line change 1414 reason = "don't run test on Windows" ,
1515)
1616def 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
You can’t perform that action at this time.
0 commit comments