-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CI: xfail html test #36467 #36468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: xfail html test #36467 #36468
Conversation
I'm fairly certain that i've seen this on the backports too. so can either backport this or merge to master and I could backport if I see it again. |
are we sure this is not coming from something inside read_html? eg something we are doing |
I guess we will be keeping the issue open until we are sure, but the problem will be less visible of course. |
Agree - I think I diagnosed the root cause here: #36480 (doesn't actually solve the problem though) |
@@ -121,6 +121,7 @@ def test_to_html_compat(self): | |||
res = self.read_html(out, attrs={"class": "dataframe"}, index_col=0)[0] | |||
tm.assert_frame_equal(res, df) | |||
|
|||
@pytest.mark.xfail(reason="ResourceWarning from html5lib #36467", strict=False) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no way to make this strict?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure how. Let me think abouit it.
yeah i think we should NOT suppress these as they tend to get ignored |
Part of #36467