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 8292752 commit 4d5c3c8Copy full SHA for 4d5c3c8
pandas/tests/io/test_sql.py
@@ -1836,7 +1836,8 @@ def test_default_type_conversion(self):
1836
# Bool column with NA = int column with NA values => becomes float
1837
assert issubclass(df.BoolColWithNull.dtype.type, np.floating)
1838
1839
- @pytest.mark.xfail(PY35 and not PY36, reason='?')
+ @pytest.mark.xfail(PY35 and not PY36, reason='unkown; also flaky',
1840
+ strict=False)
1841
def test_read_procedure(self):
1842
import pymysql
1843
# see GH7324. Although it is more an api test, it is added to the
0 commit comments