Skip to content

Commit 4d5c3c8

Browse files
committed
non-strict xfail for flaky test
1 parent 8292752 commit 4d5c3c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/test_sql.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1836,7 +1836,8 @@ def test_default_type_conversion(self):
18361836
# Bool column with NA = int column with NA values => becomes float
18371837
assert issubclass(df.BoolColWithNull.dtype.type, np.floating)
18381838

1839-
@pytest.mark.xfail(PY35 and not PY36, reason='?')
1839+
@pytest.mark.xfail(PY35 and not PY36, reason='unkown; also flaky',
1840+
strict=False)
18401841
def test_read_procedure(self):
18411842
import pymysql
18421843
# see GH7324. Although it is more an api test, it is added to the

0 commit comments

Comments
 (0)