From c1f60c2992b97e3ee828326e00d96cd34e59fbe7 Mon Sep 17 00:00:00 2001 From: Petr Hracek Date: Fri, 30 Jan 2026 09:21:25 +0100 Subject: [PATCH] Add CI environment variable CI=true for nodejs-upstream test This commit adds -e CI=true environment variable for testing NodeJS upstream tests. --- run_nightly_tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run_nightly_tests.sh b/run_nightly_tests.sh index a971bd8..a7e3deb 100755 --- a/run_nightly_tests.sh +++ b/run_nightly_tests.sh @@ -84,6 +84,8 @@ function run_tests() { ENV_VARIABLES="-e DEBUG=yes -e SCRIPT=$SCRIPT -e OS=$TARGET -e TEST=$TESTS" if [[ "$TESTS" != "test-upstream" ]]; then ENV_VARIABLES="$ENV_VARIABLES -e SET_TEST=$SET_TEST" + else + ENV_VARIABLES="$ENV_VARIABLES -e CI=true" fi TMT_COMMAND="tmt run -v -v -d -d --all ${ENV_VARIABLES} --id ${DIR} plan --name $TFT_PLAN provision --how minute --auto-select-network --image ${COMPOSE}" echo "TMT command is: $TMT_COMMAND" | tee -a "${LOG_FILE}"