10 lines
111 B
Bash
10 lines
111 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
[[ "$PYTHON" == true ]] && exit 0
|
||
|
|
||
|
pushd airtime_mvc/tests
|
||
|
../../vendor/bin/phpunit
|
||
|
popd
|