[tune] Fix a number of reporter regressions and add end-to-end tests (#7274)

This commit is contained in:
Eric Liang
2020-02-25 14:31:56 -08:00
committed by GitHub
parent 75f683eec6
commit 1ea05a2c08
9 changed files with 241 additions and 71 deletions
+3 -2
View File
@@ -269,8 +269,9 @@ def convert_to_experiment_list(experiments):
if (type(exp_list) is list
and all(isinstance(exp, Experiment) for exp in exp_list)):
if len(exp_list) > 1:
logger.warning("All experiments will be "
"using the same SearchAlgorithm.")
logger.info(
"Running with multiple concurrent experiments. "
"All experiments will be using the same SearchAlgorithm.")
else:
raise TuneError("Invalid argument: {}".format(experiments))