From 8ea994d3c5cd8c87f1c0f8dc23837c75d0499377 Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Wed, 8 Feb 2023 09:32:40 -0800 Subject: [PATCH] [tests] add missing `report_to none` (#21505) [tests] report_to none --- tests/deepspeed/test_deepspeed.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/deepspeed/test_deepspeed.py b/tests/deepspeed/test_deepspeed.py index eea27ba704..80dc017eea 100644 --- a/tests/deepspeed/test_deepspeed.py +++ b/tests/deepspeed/test_deepspeed.py @@ -778,6 +778,7 @@ class TrainerIntegrationDeepSpeed(TrainerIntegrationDeepSpeedWithCustomConfig, T "load_best_model_at_end": True, "max_steps": 1, "deepspeed": ds_config_dict, + "report_to": "none", } training_args = TrainingArguments(output_dir, **args_dict)