Skip to content

Commit ae2a201

Browse files
committed
MAINT: Remove fspath from 0.20.x branch
This isn't implemetned until 0.21.0. I'm not sure why it was picked up in the cherry-pick, but there were two PRs adding a test on either side of it in the source code.
1 parent 714c264 commit ae2a201

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

pandas/tests/io/test_pytables.py

-6
Original file line numberDiff line numberDiff line change
@@ -5201,12 +5201,6 @@ def test_read_hdf_series_mode_r(self, format):
52015201
result = pd.read_hdf(path, key='data', mode='r')
52025202
tm.assert_series_equal(result, series)
52035203

5204-
@pytest.mark.skipif(sys.version_info < (3, 6), reason="Need python 3.6")
5205-
def test_fspath(self):
5206-
with tm.ensure_clean('foo.h5') as path:
5207-
with pd.HDFStore(path) as store:
5208-
assert os.fspath(store) == str(path)
5209-
52105204
def test_read_py2_hdf_file_in_py3(self):
52115205
# GH 16781
52125206

0 commit comments

Comments
 (0)