Merge pull request #2796 from nextcloud/set-exit-code-to-1-if-test-is-failing
Set exit code to 1 if integration test is failing
This commit is contained in:
commit
430b4718fb
|
@ -210,16 +210,19 @@ EOF
|
|||
rm -rf "coverage-external-html-$1-$name"
|
||||
mkdir "coverage-external-html-$1-$name"
|
||||
"$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"
|
||||
RESULT=$?
|
||||
else
|
||||
echo "No coverage"
|
||||
"$PHPUNIT" --configuration phpunit-autotest-external.xml --log-junit "autotest-external-results-$1-$name.xml" "$FILES_EXTERNAL_BACKEND_PATH/$testToRun"
|
||||
RESULT=$?
|
||||
fi
|
||||
else
|
||||
DOEXIT=1
|
||||
fi
|
||||
|
||||
if [[ $? -ne 0 ]]; then
|
||||
echo "Error during phpunit execution ... terminating"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# calculate stop file
|
||||
stopFile=`echo "$startFile" | sed 's/start/stop/'`
|
||||
echo "stop: $stopFile"
|
||||
|
|
Loading…
Reference in New Issue