You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Catches a handful of warnings from the dask.dataframe test suite. Remaining
warnings fall into a few classes:
1. ResoucreWarnings from cloudpickls (e.g.
dask/dataframe/tests/test_arithmetics_reduction.py::test_frame_series_arithmetic_methods)
Not sure what to do here. Probably a legitimate concern of dasks?
2. RuntimeWarnings from numpy (e.g.
dask/dataframe/tests/test_arithmetics_reduction.py::test_reductions[False]
I think dask should catch these, (followup PR)
3. ImportWarning from dependencies importing C code? e.g.
dask/dataframe/tests/test_categorical.py::test_categorical_set_index[disk]
I have a fix for partd (msgpack). Pandas has some too. Still investigating,
may be a Cython issue
4. DeprecationWarning on regexes. e.g.
dask/dataframe/tests/test_groupby.py::test_full_groupby_multilevel[grouper4]
I think these are all pandas. xref
pandas-dev/pandas#16481 (comment)
5. RuntimeWarning from pandas merge, e.g.
dask/dataframe/tests/test_multi.py::test_merge_by_multiple_columns[disk-inner]
Filing an issue on pandas
0 commit comments