Skip to content

Commit

Permalink
minor #1801 install PhpUnitBridge dependencies before running tests (…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
xabbuh committed Nov 27, 2017
2 parents a4097a7 + a166584 commit 22af62c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ before_install:
- if [ "$DEPENDENCIES" != "" ]; then composer config minimum-stability $DEPENDENCIES; fi
- if [ "$SYMFONY_LTS" != "" ]; then composer require --dev --no-update symfony/lts=$SYMFONY_LTS; fi

install: composer update $COMPOSER_FLAGS --prefer-dist
install:
- composer update $COMPOSER_FLAGS --prefer-dist
- ./phpunit install

script: ./phpunit

0 comments on commit 22af62c

Please sign in to comment.