From 7d35d10d08be646d1dbb858f5a3994a03895f500 Mon Sep 17 00:00:00 2001 From: knj Date: Mon, 5 Feb 2024 10:50:40 +0100 Subject: [PATCH] remove verbosity flag --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 63e4770c1..fea6fd869 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -92,8 +92,8 @@ stages: # create short test vectors - python3 tests/create_short_testvectors.py # create references - - python3 -m pytest $TEST_SUITE -v --update_ref 1 -m create_ref -n auto - - python3 -m pytest $TEST_SUITE -v --update_ref 1 -m create_ref_part2 -n auto + - python3 -m pytest $TEST_SUITE --update_ref 1 -m create_ref -n auto + - python3 -m pytest $TEST_SUITE --update_ref 1 -m create_ref_part2 -n auto .update-scripts-repo: &update-scripts-repo @@ -190,9 +190,9 @@ stages: ### run pytest - exit_code=0 - if [ $USE_REF_ENC -eq 1 ]; then - - python3 -m pytest $TEST_SUITE -v --html=report.html --self-contained-html --junit-xml=report-junit.xml --mld --dut_encoder_path ./IVAS_cod_ref -n auto || exit_code=$? + - python3 -m pytest $TEST_SUITE --html=report.html --self-contained-html --junit-xml=report-junit.xml --mld --dut_encoder_path ./IVAS_cod_ref -n auto || exit_code=$? - else - - python3 -m pytest $TEST_SUITE -v --html=report.html --self-contained-html --junit-xml=report-junit.xml --mld -n auto || exit_code=$? + - python3 -m pytest $TEST_SUITE --html=report.html --self-contained-html --junit-xml=report-junit.xml --mld -n auto || exit_code=$? - fi - zero_errors=$(cat report-junit.xml | grep -c 'errors="0"') || true -- GitLab