Skip to content

Commit 57a396b

Browse files
author
Marco Gorelli
committed
🔥 remove now-unnecessary td.skip_if_no(pathlib)
1 parent a9e2566 commit 57a396b

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

pandas/tests/io/pytables/test_store.py

-1
Original file line numberDiff line numberDiff line change
@@ -4594,7 +4594,6 @@ def test_read_nokey_empty(self, setup_path):
45944594
with pytest.raises(ValueError):
45954595
read_hdf(path)
45964596

4597-
@td.skip_if_no("pathlib")
45984597
def test_read_from_pathlib_path(self, setup_path):
45994598

46004599
# GH11773

pandas/tests/io/sas/test_sas7bdat.py

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ def test_from_iterator(self):
6868
tm.assert_frame_equal(df, df0.iloc[2:5, :])
6969
rdr.close()
7070

71-
@td.skip_if_no("pathlib")
7271
def test_path_pathlib(self):
7372
from pathlib import Path
7473

pandas/tests/io/test_common.py

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ def test_expand_user_normal_path(self):
7373
assert expanded_name == filename
7474
assert os.path.expanduser(filename) == expanded_name
7575

76-
@td.skip_if_no("pathlib")
7776
def test_stringify_path_pathlib(self):
7877
rel_path = icom._stringify_path(Path("."))
7978
assert rel_path == "."

0 commit comments

Comments
 (0)