diff --git a/tests/ci/clickbench.py b/tests/ci/clickbench.py index 9c700adb398..359c10eeb9d 100644 --- a/tests/ci/clickbench.py +++ b/tests/ci/clickbench.py @@ -94,7 +94,7 @@ def process_results( results_path = result_directory / "test_results.tsv" if results_path.exists(): - logging.info("Found test_results.tsv") + logging.info("Found %s", results_path.name) else: logging.info("Files in result folder %s", os.listdir(result_directory)) return "error", "Not found test_results.tsv", test_results, additional_files diff --git a/tests/ci/fast_test_check.py b/tests/ci/fast_test_check.py index f5c7342d6f4..265fc81ccb3 100644 --- a/tests/ci/fast_test_check.py +++ b/tests/ci/fast_test_check.py @@ -72,7 +72,7 @@ def process_results(result_directory: Path) -> Tuple[str, str, TestResults]: status = [] status_path = result_directory / "check_status.tsv" if status_path.exists(): - logging.info("Found check_status.tsv") + logging.info("Found %s", status_path.name) with open(status_path, "r", encoding="utf-8") as status_file: status = list(csv.reader(status_file, delimiter="\t")) if len(status) != 1 or len(status[0]) != 2: diff --git a/tests/ci/functional_test_check.py b/tests/ci/functional_test_check.py index c8b3e42eed4..0dea2c5476f 100644 --- a/tests/ci/functional_test_check.py +++ b/tests/ci/functional_test_check.py @@ -169,7 +169,7 @@ def process_results( status = [] status_path = result_directory / "check_status.tsv" if status_path.exists(): - logging.info("Found check_status.tsv") + logging.info("Found %s", status_path.name) with open(status_path, "r", encoding="utf-8") as status_file: status = list(csv.reader(status_file, delimiter="\t")) diff --git a/tests/ci/integration_test_check.py b/tests/ci/integration_test_check.py index b22aa08354c..e49cec6d694 100644 --- a/tests/ci/integration_test_check.py +++ b/tests/ci/integration_test_check.py @@ -118,7 +118,7 @@ def process_results( status = [] status_path = result_directory / "check_status.tsv" if status_path.exists(): - logging.info("Found check_status.tsv") + logging.info("Found %s", status_path.name) with open(status_path, "r", encoding="utf-8") as status_file: status = list(csv.reader(status_file, delimiter="\t"))