Skip to content

Commit a166584

Browse files
committed
install PhpUnitBridge dependencies before running tests
So the output will be folded by default by Travis CI and does not clutter the tests' output.
1 parent bbaeb8a commit a166584

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ before_install:
3333
- if [ "$DEPENDENCIES" != "" ]; then composer config minimum-stability $DEPENDENCIES; fi
3434
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/lts=$SYMFONY_VERSION; fi
3535

36-
install: composer update $COMPOSER_FLAGS --prefer-dist
36+
install:
37+
- composer update $COMPOSER_FLAGS --prefer-dist
38+
- ./phpunit install
3739

3840
script: ./phpunit

0 commit comments

Comments
 (0)