summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rwxr-xr-xbuild/integration/run.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh
index 40afbe85b9b..baf31b411c4 100755
--- a/build/integration/run.sh
+++ b/build/integration/run.sh
@@ -3,16 +3,17 @@
composer install
# TODO: avoid port collision on jenkins - use $EXECUTOR_NUMBER
-if [ -z "$EXECUTOR_NUMBER" ]; then
- EXECUTOR_NUMBER=0
-fi
-PORT=$((8080 + $EXECUTOR_NUMBER))
+#if [ -z "$EXECUTOR_NUMBER" ]; then
+# EXECUTOR_NUMBER=0
+#fi
+#PORT=$((8080 + $EXECUTOR_NUMBER))
+PORT=8080
echo $PORT
php -S localhost:$PORT -t ../.. &
PHPPID=$!
echo $PHPPID
-export BEHAT_PARAMS="context[parameters][base_url]=http://localhost:$PORT/ocs"
+#export BEHAT_PARAMS="context[parameters][base_url]=http://localhost:$PORT/ocs"
vendor/bin/behat
kill $PHPPID