shlink/bin/test/run-api-tests.sh
Alejandro Celaya 8bf79db66a Fixed typo
2019-11-09 12:08:22 +01:00

18 lines
495 B
Bash
Executable file

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