Skip to content

Commit ce30f07

Browse files
committed
Merge pull request pandas-dev#136 from manahl/skipif-pd-version
Skip test_panel_save_read for newer Pandas
2 parents 7913174 + 3d4a825 commit ce30f07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/store/test_pandas_store.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ def panel(i1, i2, i3):
525525
list(rrule(DAILY, count=i3, dtstart=dt(1970, 1, 1), interval=1)))
526526

527527

528-
@pytest.mark.skipif(pd.__version__ == '0.18.0', reason="issue #115")
528+
@pytest.mark.skipif(pd.__version__ >= '0.18.0', reason="issue #115")
529529
@pytest.mark.parametrize("df_size", list(itertools.combinations_with_replacement([1, 2, 4], r=3)))
530530
def test_panel_save_read(library, df_size):
531531
'''Note - empties are not tested here as they don't work!'''

0 commit comments

Comments
 (0)