We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab66315 commit 422804cCopy full SHA for 422804c
pandas/tests/series/test_analytics.py
@@ -18,6 +18,7 @@
18
notna,
19
)
20
from pandas.api.types import is_scalar
21
+from pandas.compat import PY35
22
from pandas.core.index import MultiIndex
23
from pandas.core.indexes.datetimes import Timestamp
24
import pandas.util.testing as tm
@@ -1489,7 +1490,8 @@ def test_value_counts_with_nan(self):
1489
1490
"unicode_",
1491
"timedelta64[h]",
1492
pytest.param(
- "datetime64[D]", marks=pytest.mark.xfail(reason="GH#7996", strict=True)
1493
+ "datetime64[D]",
1494
+ marks=pytest.mark.xfail(reason="GH#7996", strict=not PY35),
1495
),
1496
],
1497
0 commit comments