Files
php-curl-class/tests/run.sh
T
2018-04-27 23:56:51 -07:00

15 lines
278 B
Bash
Executable File

SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${SCRIPT_DIR}"
set -x
php -S 127.0.0.1:8000 -t PHPCurlClass/ &> /dev/null &
pid="${!}"
extra_args="${@}"
phpunit \
--configuration "phpunit.xml" \
--debug \
--verbose \
${extra_args}
kill "${pid}"