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

run.sh « integration « tests - github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7808b9b7266f6e737c5f1326970b7ddbbeea7973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

composer install

php -S localhost:8080 -t ../../../.. &
PHPPID=$!
echo $PHPPID

export TEST_SERVER_URL="http://localhost:8080/ocs/"
vendor/bin/behat -f junit -f pretty
RESULT=$?

kill $PHPPID

exit $RESULT