2019-01-27 10:54:04 +01:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
export APP_ENV=test
|
2019-11-01 17:16:56 +01:00
|
|
|
export DB_DRIVER=mysql
|
2019-01-27 10:54:04 +01:00
|
|
|
|
|
|
|
# Try to stop server just in case it hanged in last execution
|
2020-01-01 21:11:53 +01:00
|
|
|
vendor/bin/mezzio-swoole stop
|
2019-01-27 10:54:04 +01:00
|
|
|
|
|
|
|
echo 'Starting server...'
|
2020-01-01 21:11:53 +01:00
|
|
|
vendor/bin/mezzio-swoole start -d
|
2019-01-27 10:54:04 +01:00
|
|
|
sleep 2
|
|
|
|
|
2020-02-15 20:55:04 +01:00
|
|
|
phpdbg -qrr vendor/bin/phpunit --order-by=random -c phpunit-api.xml --testdox --colors=always $*
|
2019-11-09 11:25:33 +01:00
|
|
|
testsExitCode=$?
|
|
|
|
|
2020-01-01 21:11:53 +01:00
|
|
|
vendor/bin/mezzio-swoole stop
|
2019-11-09 11:25:33 +01:00
|
|
|
|
|
|
|
# Exit this script with the same code as the tests. If tests failed, this script has to fail
|
2019-11-09 12:08:22 +01:00
|
|
|
exit $testsExitCode
|