From 6f8f7150ffc2e70cb979659a0c6524d648101532 Mon Sep 17 00:00:00 2001 From: Yatsishin Ilya <2159081+qoega@users.noreply.github.com> Date: Fri, 21 Oct 2022 16:42:45 +0000 Subject: [PATCH] style --- tests/ci/sqlancer_check.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/ci/sqlancer_check.py b/tests/ci/sqlancer_check.py index 2f320fbbf71..f41ae14b2d3 100644 --- a/tests/ci/sqlancer_check.py +++ b/tests/ci/sqlancer_check.py @@ -21,6 +21,7 @@ from build_download_helper import get_build_name_for_check, read_build_urls from docker_pull_helper import get_image_with_version from commit_status_helper import post_commit_status from clickhouse_helper import ClickHouseHelper, prepare_tests_results_for_clickhouse +from upload_result_helper import upload_results from stopwatch import Stopwatch from rerun_helper import RerunHelper @@ -141,6 +142,8 @@ if __name__ == "__main__": report_url = GITHUB_RUN_URL + status = "succeess" + test_results = [] # Try to get status message saved by the SQLancer try: with open( @@ -151,7 +154,6 @@ if __name__ == "__main__": with open( os.path.join(workspace_path, "summary.tsv"), "r", encoding="utf-8" ) as summary_f: - test_results = [] for line in summary_f: l = line.split("\t") test_results.append((l[0], l[1]))