Skip to content

Commit

Permalink
Merge pull request pandas-dev#136 from manahl/skipif-pd-version
Browse files Browse the repository at this point in the history
Skip test_panel_save_read for newer Pandas
  • Loading branch information
mildbyte committed May 9, 2016
2 parents 7913174 + 3d4a825 commit ce30f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/store/test_pandas_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def panel(i1, i2, i3):
list(rrule(DAILY, count=i3, dtstart=dt(1970, 1, 1), interval=1)))


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

0 comments on commit ce30f07

Please sign in to comment.