-
Notifications
You must be signed in to change notification settings - Fork 532
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
Enable pytest failures on FutureWarnings/DeprecationWarnings #5877
Enable pytest failures on FutureWarnings/DeprecationWarnings #5877
Conversation
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.
PR looks great, thanks for the help @mroeschke! Very excited to merge this
python/pyproject.toml
Outdated
"error:::cudf", | ||
"ignore:[^.]*ABCs[^.]*:DeprecationWarning:patsy[.*]", | ||
"ignore:(.*)alias(.*):DeprecationWarning:hdbscan[.*]", | ||
# TODO |
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.
Can we open a GH issue with the content of this file there? Will be great to track tackling these.
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.
/merge |
The test suite will now fail on FutureWarnings and DeprecationWarnings as apart of rapidsai/build-planning#26.
pytest.ini was consolidated into pyproject.toml so there's only 1 place with these configs.
There are some
TODO
s including scikit-learn warnings, but I hope it's OK to potentially pass the baton to @betatim :)