File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 7878 pytest .mark .filterwarnings (default_to_pandas_ignore_string ),
7979 # TO MAKE SURE ALL FUTUREWARNINGS ARE CONSIDERED
8080 pytest .mark .filterwarnings ("error::FutureWarning" ),
81+ # ... except for this expected Ray warning due to https://github.com/ray-project/ray/issues/54868
82+ pytest .mark .filterwarnings (
83+ "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"
84+ ),
8185 # IGNORE FUTUREWARNINGS MARKS TO CLEANUP OUTPUT
8286 pytest .mark .filterwarnings (
8387 "ignore:DataFrame.groupby with axis=1 is deprecated:FutureWarning"
Original file line number Diff line number Diff line change 4040 pytest .mark .filterwarnings (default_to_pandas_ignore_string ),
4141 # TO MAKE SURE ALL FUTUREWARNINGS ARE CONSIDERED
4242 pytest .mark .filterwarnings ("error::FutureWarning" ),
43+ # ... except for this expected Ray warning due to https://github.com/ray-project/ray/issues/54868
44+ pytest .mark .filterwarnings (
45+ "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"
46+ ),
4347 # IGNORE FUTUREWARNINGS MARKS TO CLEANUP OUTPUT
4448 pytest .mark .filterwarnings (
4549 "ignore:Support for axis=1 in DataFrame.rolling is deprecated:FutureWarning"
You can’t perform that action at this time.
0 commit comments