Skip to content

Commit

Permalink
Make travis run also the ReactPromiseAdapter tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuso Leinonen committed Dec 22, 2016
1 parent 90c4b5d commit e3a864f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -22,8 +22,9 @@ before_install:

install:
- composer install --dev --prefer-dist
- composer require react/promise:2.*

script: if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then phpunit --coverage-clover build/logs/clover.xml; else phpunit; fi
script: if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then phpunit --coverage-clover build/logs/clover.xml --group default,ReactPromise; else phpunit --group default,ReactPromise; fi

after_success:
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then composer require "satooshi/php-coveralls:^1.0" && travis_retry php bin/coveralls -v; fi

0 comments on commit e3a864f

Please sign in to comment.