It is just additional overhead without real benefit. Signed-off-by: Michal Čihař <michal@cihar.com>
13 lines
221 B
Bash
Executable File
13 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$TRAVIS_PHP_VERSION" in
|
|
hhvm*)
|
|
CONFIG=phpunit.xml.hhvm
|
|
;;
|
|
*)
|
|
CONFIG=phpunit.xml.dist
|
|
;;
|
|
esac
|
|
|
|
./vendor/bin/phpunit --configuration $CONFIG --exclude-group selenium
|