shlink/bin/test/run-api-tests.sh

20 lines
532 B
Bash
Raw Normal View History

2019-01-27 03:54:04 -06:00
#!/usr/bin/env sh
export APP_ENV=test
export DB_DRIVER=mysql
2020-09-26 03:43:50 -05:00
export TEST_ENV=api
2019-01-27 03:54:04 -06:00
# Try to stop server just in case it hanged in last execution
2020-01-01 14:11:53 -06:00
vendor/bin/mezzio-swoole stop
2019-01-27 03:54:04 -06:00
echo 'Starting server...'
2020-01-01 14:11:53 -06:00
vendor/bin/mezzio-swoole start -d
2019-01-27 03:54:04 -06:00
sleep 2
2020-09-26 03:43:50 -05:00
vendor/bin/phpunit --order-by=random -c phpunit-api.xml --testdox --colors=always --log-junit=build/coverage-api/junit.xml $*
testsExitCode=$?
2020-01-01 14:11:53 -06:00
vendor/bin/mezzio-swoole stop
# Exit this script with the same code as the tests. If tests failed, this script has to fail
2019-11-09 05:08:22 -06:00
exit $testsExitCode