Skip to content

Commit 7efc6b2

Browse files
committed
Set exit code to 1 if integration test is failing
Before it just checked the unit tests and ignored the integration test results. See https://drone.nextcloud.com/nextcloud/server/3374/35 for details. Signed-off-by: Lukas Reschke <[email protected]>
1 parent e3dfe2c commit 7efc6b2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

autotest-external.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -210,16 +210,19 @@ EOF
210210
rm -rf "coverage-external-html-$1-$name"
211211
mkdir "coverage-external-html-$1-$name"
212212
"$PHPUNIT" --configuration phpunit-autotest-external.xml --log-junit "autotest-external-results-$1-$name.xml" --coverage-clover "autotest-external-clover-$1-$name.xml" --coverage-html "coverage-external-html-$1-$name" "$FILES_EXTERNAL_BACKEND_PATH/$testToRun"
213-
RESULT=$?
214213
else
215214
echo "No coverage"
216215
"$PHPUNIT" --configuration phpunit-autotest-external.xml --log-junit "autotest-external-results-$1-$name.xml" "$FILES_EXTERNAL_BACKEND_PATH/$testToRun"
217-
RESULT=$?
218216
fi
219217
else
220218
DOEXIT=1
221219
fi
222220

221+
if [[ $? -ne 0 ]]; then
222+
echo "Error during phpunit execution ... terminating"
223+
exit 1
224+
fi
225+
223226
# calculate stop file
224227
stopFile=`echo "$startFile" | sed 's/start/stop/'`
225228
echo "stop: $stopFile"

0 commit comments

Comments
 (0)