From c8c4a3dc9528b62db7c043ef1628e775a1571a12 Mon Sep 17 00:00:00 2001 From: norvell Date: Wed, 5 Oct 2022 05:13:38 +0000 Subject: [PATCH] Adding "./" to executable path in coverage-test-on-main-scheduled -- needed for Ericsson runner --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a16cdc3666..1ff03afc65 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -630,9 +630,9 @@ coverage-test-on-main-scheduled: - *print-common-info - make GCOV=1 -j - python3 tests/create_short_testvectors.py - - python3 -m pytest tests -v -n 0 --update_ref 1 -m create_ref --ref_encoder_path IVAS_cod --ref_decoder_path IVAS_dec - - python3 -m pytest tests -v -n 0 --update_ref 1 -m create_ref_part2 --ref_encoder_path IVAS_cod --ref_decoder_path IVAS_dec - - python3 -m pytest tests/test_param_file.py -v -n 0 --update_ref 1 -m create_ref --param_file scripts/config/self_test_evs.prm --ref_encoder_path IVAS_cod --ref_decoder_path IVAS_dec + - python3 -m pytest tests -v -n 0 --update_ref 1 -m create_ref --ref_encoder_path ./IVAS_cod --ref_decoder_path ./IVAS_dec + - python3 -m pytest tests -v -n 0 --update_ref 1 -m create_ref_part2 --ref_encoder_path ./IVAS_cod --ref_decoder_path ./IVAS_dec + - python3 -m pytest tests/test_param_file.py -v -n 0 --update_ref 1 -m create_ref --param_file scripts/config/self_test_evs.prm --ref_encoder_path ./IVAS_cod --ref_decoder_path ./IVAS_dec - lcov -c -d obj -o coverage.info - genhtml coverage.info -o coverage artifacts: -- GitLab