From d7235fda094008bd7b5a610157d338a1657cff43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yuan-Ting=20Hsieh=20=28=E8=AC=9D=E6=B2=85=E5=BB=B7=29?= Date: Fri, 17 Dec 2021 13:02:50 -0800 Subject: [PATCH] Fix TensorBoard streaming app test's result validator (#77) --- test/app_testing/test_apps/validators/tb_result_validator.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/app_testing/test_apps/validators/tb_result_validator.py b/test/app_testing/test_apps/validators/tb_result_validator.py index b03132e53d..f5b39af09b 100644 --- a/test/app_testing/test_apps/validators/tb_result_validator.py +++ b/test/app_testing/test_apps/validators/tb_result_validator.py @@ -36,8 +36,4 @@ def validate_results(self, server_data, client_data, run_data) -> bool: print(f"tb validate results: client_side_client_tb_dir {client_side_client_tb_dir} doesn't exist.") return False - server_side_client_tb_dir = os.path.join(server_tb_root_dir, client_data["client_names"][i]) - if not os.path.exists(server_side_client_tb_dir): - print(f"tb validate results: server_side_client_tb_dir {server_side_client_tb_dir} doesn't exist.") - return False return True