Skip to content

Commit dcc511e

Browse files
TomAugspurgerMeeseeksDev[bot]
authored and
MeeseeksDev[bot]
committed
Backport PR pandas-dev#28072: TST: non-strict xfail for period test
1 parent 8795cb7 commit dcc511e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pandas/tests/scalar/period/test_period.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,11 @@ def test_period_immutable():
15811581

15821582

15831583
@pytest.mark.xfail(
1584-
PY35, reason="Parsing as Period('0007-01-01', 'D') for reasons unknown", strict=True
1584+
# xpassing on MacPython with strict=False
1585+
# https://travis-ci.org/MacPython/pandas-wheels/jobs/574706922
1586+
PY35,
1587+
reason="Parsing as Period('0007-01-01', 'D') for reasons unknown",
1588+
strict=False,
15851589
)
15861590
def test_small_year_parsing():
15871591
per1 = Period("0001-01-07", "D")

0 commit comments

Comments
 (0)