Skip to content

Commit 53e5a6b

Browse files
committed
Changed pytest.skip to pytest.xfail for visibility
1 parent 3f1152c commit 53e5a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/test_excel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ def test_to_excel_interval_labels(self, merge_cells, engine, ext):
13571357
def test_to_excel_timedelta(self, merge_cells, engine, ext):
13581358
# GH 19242, GH9155 - test writing timedelta to xls
13591359
if engine == 'openpyxl':
1360-
pytest.skip('Timedelta roundtrip broken with openpyxl')
1360+
pytest.xfail('Timedelta roundtrip broken with openpyxl')
13611361
frame = DataFrame(np.random.randint(-10, 10, size=(20, 1)),
13621362
columns=['A'],
13631363
dtype=np.int64

0 commit comments

Comments
 (0)