From 0f976a2c5873660aa2ed28525b069febbd112117 Mon Sep 17 00:00:00 2001 From: bernd Date: Mon, 28 Oct 2024 14:52:08 +0100 Subject: [PATCH] [TASK] Add if condition from core runTests.sh (#1497) --- Build/Scripts/runTests.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh index 99b6a60..020014a 100755 --- a/Build/Scripts/runTests.sh +++ b/Build/Scripts/runTests.sh @@ -4,7 +4,9 @@ # TYPO3 extension tea test runner based on docker. # -trap 'cleanUp;exit 2' SIGINT +if [ "${CI}" != "true" ]; then + trap 'echo "runTests.sh SIGINT signal emitted";cleanUp;exit 2' SIGINT +fi waitFor() { local HOST=${1}