Skip to content

Commit 22af62c

Browse files
committed
minor #1801 install PhpUnitBridge dependencies before running tests (xabbuh)
This PR was merged into the 2.3-dev branch. Discussion ---------- install PhpUnitBridge dependencies before running tests So the output will be folded by default by Travis CI and does not clutter the tests' output. Commits ------- a166584 install PhpUnitBridge dependencies before running tests
2 parents a4097a7 + a166584 commit 22af62c

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_LTS" != "" ]; then composer require --dev --no-update symfony/lts=$SYMFONY_LTS; 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)