From 55b32e2041d876fdfa7b4227aa54fd8c64c23f45 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 2 Apr 2025 09:08:46 +0200 Subject: [PATCH] ignore "COMPLEXITY" folders when collecting from complexity jobs --- ci/setup_pages.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci/setup_pages.py b/ci/setup_pages.py index 0430e5ca0c..b9d0b8da88 100755 --- a/ci/setup_pages.py +++ b/ci/setup_pages.py @@ -156,6 +156,11 @@ def get_artifacts_for_jobs_and_return_num_failed( tmp_dir = pathlib.Path(tmp_dir) for artifact in tmp_dir.iterdir(): + # ignore the COMPLEXITY dir from complexity measurement, that one only contins runtime logs + # and creates problems because it has the same name for every complexity job + if artifact.name == "COMPLEXITY": + continue + src = tmp_dir.joinpath(artifact).absolute() dst = PUBLIC_FOLDER.joinpath(artifact.name) print(f"{src} -> {dst}") -- GitLab