From b36901792fa0d780fe021e0df85f00cbad3b8462 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Fri, 1 Aug 2025 09:07:51 +0200 Subject: [PATCH] fix temp renaming in split rendering comparison job --- main-basop.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main-basop.yml b/main-basop.yml index 4b522c0..5f3c74b 100644 --- a/main-basop.yml +++ b/main-basop.yml @@ -1359,10 +1359,10 @@ split-rendering-pytest-on-merge-request: - testcase_timeout=60 # remporary solution to make it work with and without https://forge.3gpp.org/rep/ivas-codec-pc/ivas-codec/-/merge_requests/2181 - - mv $DUT_POST_RENDERER_PATH ISAR_post_rend_tmp - - cp $REF_POST_RENDERER_PATH $DUT_POST_RENDERER_PATH + - mv ISAR_post_rend ISAR_post_rend_tmp + - cp $REF_POST_RENDERER_PATH ISAR_post_rend - python3 -m pytest -q --log-level ERROR -n auto -rA tests/split_rendering/test_split_rendering.py --create_ref --testcase_timeout=$testcase_timeout || exit_code=$? - - mv ISAR_post_rend_tmp $DUT_POST_RENDERER_PATH + - mv ISAR_post_rend_tmp ISAR_post_rend ### Run test using scripts and input from main - if [ $ref_using_target == 1 ]; then git restore lib_com/options.h; fi # Revert changes back before checking out another branch to avoid conflicts -- GitLab