From fe5d80156d8792053f03977beafbc8519bad59bd Mon Sep 17 00:00:00 2001 From: Sergio Cazzolato Date: Wed, 3 Apr 2024 14:23:02 -0300 Subject: [PATCH] tests: fix run-spread test to allow running multiple tests on custom variant (#13751) * fix run-tests test to allow to run multiple tests on custom variant Ths is needed to re-exec failed tests on beta validation * add acho to show tests to be executed * fix shellcheck disable=SC2086 * add stderr to spread.log --- tests/nested/manual/run-spread/task.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/nested/manual/run-spread/task.yaml b/tests/nested/manual/run-spread/task.yaml index 35f01c517f4..10c721dfd07 100644 --- a/tests/nested/manual/run-spread/task.yaml +++ b/tests/nested/manual/run-spread/task.yaml @@ -42,4 +42,6 @@ execute: | remote.refresh full fi - "$SPREAD" -v "$RUN_TESTS" | tee spread.log + echo "Running $SPREAD -v $RUN_TESTS" + # shellcheck disable=SC2086 + "$SPREAD" -v $RUN_TESTS |& tee spread.log