blob: ddcad01b1e97fe1f143bee2e3baff0fba5951e68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
composer update
php -r 'echo "\nPHP version " . phpversion() . ". ";';
if [ -z $1 ];
then
echo "Running all unit tests.\n"
php ./vendor/phpunit/phpunit/phpunit
else
echo "Running all unit tests, except tests marked with @group $1.\n"
php ./vendor/phpunit/phpunit/phpunit --exclude-group $1
fi
|