Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions modin/tests/pandas/test_groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@
pytest.mark.filterwarnings(default_to_pandas_ignore_string),
# TO MAKE SURE ALL FUTUREWARNINGS ARE CONSIDERED
pytest.mark.filterwarnings("error::FutureWarning"),
# ... except for this expected Ray warning due to https://github.com/ray-project/ray/issues/54868
pytest.mark.filterwarnings(
"ignore:.*In future versions of Ray, Ray will no longer override accelerator visible devices env var if num_gpus=0 or num_gpus=None:FutureWarning"
),
# IGNORE FUTUREWARNINGS MARKS TO CLEANUP OUTPUT
pytest.mark.filterwarnings(
"ignore:DataFrame.groupby with axis=1 is deprecated:FutureWarning"
Expand Down
4 changes: 4 additions & 0 deletions modin/tests/pandas/test_rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@
pytest.mark.filterwarnings(default_to_pandas_ignore_string),
# TO MAKE SURE ALL FUTUREWARNINGS ARE CONSIDERED
pytest.mark.filterwarnings("error::FutureWarning"),
# ... except for this expected Ray warning due to https://github.com/ray-project/ray/issues/54868
pytest.mark.filterwarnings(
"ignore:.*In future versions of Ray, Ray will no longer override accelerator visible devices env var if num_gpus=0 or num_gpus=None:FutureWarning"
),
# IGNORE FUTUREWARNINGS MARKS TO CLEANUP OUTPUT
pytest.mark.filterwarnings(
"ignore:Support for axis=1 in DataFrame.rolling is deprecated:FutureWarning"
Expand Down
Loading