Skip to content

Commit b2e2cff

Browse files
committed
fixup! ENH: Support fspath protocol
1 parent 30f4a67 commit b2e2cff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/test_common.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ def test_iterator(self):
129129
])
130130
def test_read_fspath_all(self, reader, module, path):
131131
pytest.importorskip(module)
132-
assert os.path.exists(path) # trying to debug
132+
if not os.path.exists(path):
133+
pytest.skip("Test data not included in distribution.")
133134

134135
mypath = CustomFSPath(path)
135136
result = reader(mypath)

0 commit comments

Comments
 (0)