Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-11-14 15:46:21 +0300
committerVincent Petry <pvince81@owncloud.com>2016-11-14 20:37:05 +0300
commit66bc5b538a9dd3bc132d71d323633258ed785aa0 (patch)
tree4bcc8fd9f0d46a00caf2786d0369a927ddac1d8f /build
parent497ab1a60a7418193508af9ab11521cdf6d63e86 (diff)
behat will only only pass if all tests pass
Diffstat (limited to 'build')
-rwxr-xr-xbuild/integration/run.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh
index ec3b1bfd63c..ab8ea8ba2f9 100755
--- a/build/integration/run.sh
+++ b/build/integration/run.sh
@@ -34,7 +34,7 @@ ID_STORAGE=`echo $OUTPUT_CREATE_STORAGE | awk {'print $5'}`
../../occ files_external:option $ID_STORAGE enable_sharing true
-vendor/bin/behat -f junit -f pretty $SCENARIO_TO_RUN
+vendor/bin/behat --strict -f junit -f pretty $SCENARIO_TO_RUN
RESULT=$?
kill $PHPPID
@@ -49,5 +49,6 @@ if [ -z $HIDE_OC_LOGS ]; then
tail "../../data/owncloud.log"
fi
+echo "runsh: Exit code: $RESULT"
exit $RESULT