shlink/bin/test/run-api-tests.sh
2020-09-26 11:07:02 +02:00

21 lines
574 B
Bash
Executable file

#!/usr/bin/env sh
export APP_ENV=test
export DB_DRIVER=mysql
export TEST_ENV=api
# Try to stop server just in case it hanged in last execution
vendor/bin/mezzio-swoole stop
echo 'Starting server...'
vendor/bin/mezzio-swoole start -d
sleep 2
vendor/bin/phpunit --order-by=random -c phpunit-api.xml --testdox --colors=always --log-junit=build/coverage-api/junit.xml $*
testsExitCode=$?
vendor/bin/mezzio-swoole stop
echo "The exist code was $testsExitCode"
# Exit this script with the same code as the tests. If tests failed, this script has to fail
exit $testsExitCode