-
Notifications
You must be signed in to change notification settings - Fork 945
xfail all known errors in pandas-test suite #18612
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
Conversation
"\"label=Interval(1, 4, closed='right') not in index\"", | ||
"\"label=Timestamp('2019-01-01 00:00:00') not in index\"", | ||
"\"label=Timedelta('1 days 00:00:00') not in index\"", | ||
"7", |
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.
This is too generic, no? Can we add the full error message?
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.
The error itself is KeyError: 7
, nothing more than that. More information can be extracted if we inspect the stack-trace also programmatically, but that's overkill for something like this.
/merge |
Description
Achieves 90% of #18569
This PR programatically
xfails
all known errors that show up in pandas test suite.branch-25.06:
This PR:
I plan on doing follow-up PRs for the rest 1.6k failures which seem to be inconsistent results that
cudf
returns. Once we hit that mark, we should be able to fully enable pass/fail status on the job.Checklist