-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
TST: Address test warnings #48075
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: Address test warnings #48075
Conversation
@@ -202,6 +202,7 @@ def func_kwargs(values, index): | |||
|
|||
|
|||
@td.skip_if_no("numba") | |||
@pytest.mark.filterwarnings("ignore") |
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 just ignore numba-produced warnings?
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 the NumbaPerformanceWarning
are safe to ignore. Unfortunately I don't think specifying a "ignore::numba.NumbaPerformanceWarning"
can be put in the pyproject.toml
because not all builds have numba
installed.
The goal is to enable
pytest -W error:::pandas
to raise potential errors in our test suite due to warnings pandas issues