Files
php-curl-class/tests/run.sh
T
2016-03-29 08:11:51 -07:00

9 lines
158 B
Bash
Executable File

set -x
php -S 127.0.0.1:8000 -t PHPCurlClass/ &> /dev/null &
pid="${!}"
phpunit \
--configuration phpunit.xml \
--debug \
--verbose
kill "${pid}"