Hide built-in web server output when running tests

This commit is contained in:
Zach Borboa
2015-11-10 08:04:15 -08:00
parent 0e2e64734e
commit 81807f1753
+1 -1
View File
@@ -1,4 +1,4 @@
php -S 127.0.0.1:8000 -t PHPCurlClass/ &
php -S 127.0.0.1:8000 -t PHPCurlClass/ &> /dev/null &
pid="${!}"
phpunit --configuration phpunit.xml
kill "${pid}"