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:23 +0300
commite472e967f4e933517683fcaecab81a7022e91f45 (patch)
tree8ce16d6bff26de9586d9e96819f11b022c9a20a3 /build
parentf31082b5a47dcbeaf09636d50a1a0360d2caf29a (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 04c71eb18ce..c3812826043 100755
--- a/build/integration/run.sh
+++ b/build/integration/run.sh
@@ -36,7 +36,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
@@ -51,5 +51,6 @@ if [ -z $HIDE_OC_LOGS ]; then
tail "../../data/owncloud.log"
fi
+echo "runsh: Exit code: $RESULT"
exit $RESULT