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 ff5d13c commit 71c6d1bCopy full SHA for 71c6d1b
pandas/tests/series/test_analytics.py
@@ -5,6 +5,7 @@
5
from numpy import nan
6
import pytest
7
8
+from pandas.compat import PY35
9
import pandas.util._test_decorators as td
10
11
import pandas as pd
@@ -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