2019-01-27 12:54:04 +03:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
export APP_ENV=test
|
2019-11-01 19:16:56 +03:00
|
|
|
export DB_DRIVER=mysql
|
2019-01-27 12:54:04 +03:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2019-11-01 12:10:43 +03:00
|
|
|
vendor/bin/phpunit --order-by=random -c phpunit-api.xml --testdox --colors=always
|
2019-11-09 13:25:33 +03:00
|
|
|
testsExitCode=$?
|
|
|
|
|
2019-01-27 12:54:04 +03:00
|
|
|
vendor/bin/zend-expressive-swoole stop
|
2019-11-09 13:25:33 +03:00
|
|
|
|
|
|
|
# Exit this script with the same code as the tests. If tests failed, this script has to fail
|
2019-11-09 14:08:22 +03:00
|
|
|
exit $testsExitCode
|