-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
[TST] make xfails strict #22139
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
[TST] make xfails strict #22139
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ def test_nulls(idx): | |
idx.isna() | ||
|
||
|
||
@pytest.mark.xfail | ||
@pytest.mark.xfail(strict=True) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can u add a reason There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, will try to sort that out. Also waiting to see if anything fails on the CI that passed locally. |
||
def test_hasnans_isnans(idx): | ||
# GH 11343, added tests for hasnans / isnans | ||
index = idx.copy() | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -212,7 +212,6 @@ def test_parallel_coordinates(self, iris): | |
with tm.assert_produces_warning(FutureWarning): | ||
parallel_coordinates(df, 'Name', colors=colors) | ||
|
||
@pytest.mark.xfail(reason="unreliable test") | ||
def test_parallel_coordinates_with_sorted_labels(self): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hah! |
||
""" For #15908 """ | ||
from pandas.plotting import parallel_coordinates | ||
|
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.
yeah u can change to skip (and similar ones)