Increase verbosity when running local tests

This commit is contained in:
Zach Borboa
2016-03-29 08:11:51 -07:00
parent ea0ec13d05
commit 644c59f8bf
+5 -1
View File
@@ -1,4 +1,8 @@
set -x
php -S 127.0.0.1:8000 -t PHPCurlClass/ &> /dev/null &
pid="${!}"
phpunit --configuration phpunit.xml
phpunit \
--configuration phpunit.xml \
--debug \
--verbose
kill "${pid}"