From 41111088e98f977a3a0bd9ecc40e8b49ee5809c2 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 4 Mar 2026 14:46:45 +0100 Subject: [PATCH 1/5] run unzip commands in pages setup script in quiet mode --- ci/setup_pages.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/setup_pages.py b/ci/setup_pages.py index dbb63c7521..bf41795024 100755 --- a/ci/setup_pages.py +++ b/ci/setup_pages.py @@ -182,11 +182,10 @@ def curl_for_artifacts(job_id: int, project_id: int, exdir: str): "--output", ARTIFACTS, ] - print(cmd) subprocess.run(cmd, check=True) # check for valid archive (if not, it is likely a 404 page, then display that) - cmd = ["unzip", "-t", ARTIFACTS] + cmd = ["unzip", "-t", "-qq", ARTIFACTS] try: subprocess.run(cmd, check=True) except subprocess.CalledProcessError: @@ -195,7 +194,7 @@ def curl_for_artifacts(job_id: int, project_id: int, exdir: str): raise subprocess.CalledProcessError(-1, "Unzip check failed") # do the actual unzipping - cmd = ["unzip", ARTIFACTS, "-d", exdir] + cmd = ["unzip", "-q", ARTIFACTS, "-d", exdir] subprocess.run(cmd, check=True) -- GitLab From 3819bab5d13edb66a8688e88498c534bdb6ed5d7 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 4 Mar 2026 15:03:35 +0100 Subject: [PATCH 2/5] add controlling the log level cia env var --- tests/create_short_testvectors.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/create_short_testvectors.py b/tests/create_short_testvectors.py index 8b889c974f..b280b53e86 100755 --- a/tests/create_short_testvectors.py +++ b/tests/create_short_testvectors.py @@ -37,6 +37,7 @@ Create short (5sec) testvectors. import argparse import sys import logging +import os from pathlib import Path from cut_pcm import cut_samples @@ -112,7 +113,7 @@ def create_short_testvectors( out_file = TEST_VECTOR_DIR.joinpath(f.stem + suffix + f.suffix) num_channels = audiofile.get_wav_file_info(f)["channels"] - logging.info(f"{str(f)} -> {out_file}") + logging.debug(f"{str(f)} -> {out_file}") if not dry: cut_samples(f, out_file, num_channels, CUT_FROM, f"{cut_len}", GAIN) @@ -167,6 +168,8 @@ if __name__ == "__main__": assert not (args.use_ltv and args.ltv_dir is None) logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s") + if os.environ.get("IVAS_CI_PYTHON_LOG_LEVEL") == "DEBUG": + logging.basicConfig(level=logging.DEBUG, format="%(levelname)s: %(message)s") sys.exit( create_short_testvectors( -- GitLab From 809ee2cc6ea76712f3b891c64ba6676c739db14c Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 4 Mar 2026 15:35:44 +0100 Subject: [PATCH 3/5] remove verbose flag from pytest.ini --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index c52e1b7bbd..6d952e3233 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,7 +1,7 @@ # pytest.ini # note: per convention, this file is placed in the root directory of the repository [pytest] -addopts = --tb=short -n auto -v +addopts = --tb=short -n auto # Write captured system-out log messages to JUnit report. junit_logging = system-out # Do not capture log information for passing tests to JUnit report. -- GitLab From 92f691b91534f93d078b0babb9bbcac233f0ea0f Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 4 Mar 2026 16:50:44 +0100 Subject: [PATCH 4/5] add -ra to default pytest options --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 6d952e3233..98d8d181a0 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,7 +1,7 @@ # pytest.ini # note: per convention, this file is placed in the root directory of the repository [pytest] -addopts = --tb=short -n auto +addopts = --tb=short -n auto -ra # Write captured system-out log messages to JUnit report. junit_logging = system-out # Do not capture log information for passing tests to JUnit report. -- GitLab From 56b515041e2799748311921dd307347cf729b330 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 4 Mar 2026 17:14:42 +0100 Subject: [PATCH 5/5] [revert-me] change CI ref --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 81e3d0a3d6..0356477d0c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: # note: GitLab cannot reference variables defined by users in the include ref:, we need to use a YAML anchor for this # see https://docs.gitlab.com/ci/yaml/includes/#use-variables-with-include for more information - IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF main + IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF reduce-console-log # If you need to set some config variable only in a local branch, then add an overwrite here # One example is DISABLE_HRTF - this will be set on a branch which is about to be merged and will be removed in a subsequent second MR # this is more easily done directly here in the child repo -- GitLab