Skip to content
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 FutureWarnings and DeprecationWarnings as errors in cugraph #4415

Merged
11 changes: 10 additions & 1 deletion python/cugraph/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,14 @@ python_functions =

filterwarnings =
error:::cudf
error::FutureWarning
error::DeprecationWarning
# TODO
ignore:Multi is deprecated and the removal of multi edges will no longer be supported:FutureWarning
ignore:The legacy column names:FutureWarning
ignore:The include_hop_column flag is deprecated and will be removed:FutureWarning
ignore:Calling uniform_neighbor_sample with the:FutureWarning
ignore:The with_edge_properties flag is deprecated and will be removed:FutureWarning
ignore:This function is deprecated. Batched support for multiple vertices:DeprecationWarning
# Called via dask. Not obviously addressable in cugraph.
ignore:The behavior of array concatenation with empty entries is deprecated:FutureWarning:cudf
ignore:The behavior of array concatenation with empty entries is deprecated:FutureWarning
Loading