Skip to content

Commit 7300fe7

Browse files
jrebackTomAugspurger
authored andcommitted
TST: skip pytables test with not-updated pytables conda package (pandas-dev#22099)
(cherry picked from commit 017e910)
1 parent 9f2bfc5 commit 7300fe7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pandas/tests/io/test_pytables.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from pandas import (Series, DataFrame, Panel, MultiIndex, Int64Index,
1515
RangeIndex, Categorical, bdate_range,
1616
date_range, timedelta_range, Index, DatetimeIndex,
17-
isna, compat, concat, Timestamp)
17+
isna, compat, concat, Timestamp, _np_version_under1p15)
1818

1919
import pandas.util.testing as tm
2020
import pandas.util._test_decorators as td
@@ -2140,6 +2140,10 @@ def test_unimplemented_dtypes_table_columns(self):
21402140
# this fails because we have a date in the object block......
21412141
pytest.raises(TypeError, store.append, 'df_unimplemented', df)
21422142

2143+
@pytest.mark.skipif(
2144+
not _np_version_under1p15,
2145+
reason=("pytables conda build package needs build "
2146+
"with numpy 1.15: gh-22098"))
21432147
def test_calendar_roundtrip_issue(self):
21442148

21452149
# 8591

0 commit comments

Comments
 (0)