From 75330cce388a5c4e84e6486970e487b13080bd09 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 21 Aug 2019 14:31:30 -0500 Subject: [PATCH] TST: non-strict xfail for period test This was XPASSing on the MacPython builds: https://travis-ci.org/MacPython/pandas-wheels/jobs/574706922 --- pandas/tests/scalar/period/test_period.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pandas/tests/scalar/period/test_period.py b/pandas/tests/scalar/period/test_period.py index 6da4d556ea07e..a1de205afc0e2 100644 --- a/pandas/tests/scalar/period/test_period.py +++ b/pandas/tests/scalar/period/test_period.py @@ -1549,7 +1549,11 @@ def test_period_immutable(): @pytest.mark.xfail( - PY35, reason="Parsing as Period('0007-01-01', 'D') for reasons unknown", strict=True + # xpassing on MacPython with strict=False + # https://travis-ci.org/MacPython/pandas-wheels/jobs/574706922 + PY35, + reason="Parsing as Period('0007-01-01', 'D') for reasons unknown", + strict=False, ) def test_small_year_parsing(): per1 = Period("0001-01-07", "D")