mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-24 22:09:07 +00:00
9 lines
158 B
Bash
Executable File
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}"
|