This is so we get a proper shell where running set -xe makes sense allowing travis to pick up nicely on how the tests run (ie. marking them as failed and not errored when the fail).
9 lines
111 B
Bash
Executable file
9 lines
111 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
[[ "$PYTHON" == true ]] && exit 0
|
|
|
|
pushd airtime_mvc/tests
|
|
../../vendor/bin/phpunit
|
|
popd
|