mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-12-03 18:36:12 +01:00

[TASK] Add if condition from core runTests.sh (#1497)

This commit is contained in:
bernd 2024-10-28 14:52:08 +01:00 committed by GitHub
parent 24d0755f7a
commit 0f976a2c58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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}