diff --git a/ci/setup_pages.py b/ci/setup_pages.py index 0430e5ca0cb632e7ac353037d631ccccb0354837..b9d0b8da8871c2065cb45655ce65244c8bbe7f6a 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}")