Skip to content
This repository has been archived by the owner on Jun 27, 2022. It is now read-only.

Commit

Permalink
Add test with lowest composer flags (#40)
Browse files Browse the repository at this point in the history
* Add test with lowest composer flags

* Do not use coverage
  • Loading branch information
Nyholm authored and sagikazarmark committed Jan 13, 2017
1 parent 9465032 commit 4c8fe4c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 8 deletions.
34 changes: 26 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,40 @@
language: php

cache:
directories:
- $HOME/.composer/cache/files

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm

before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- ~/.nvm/nvm.sh install v0.6.14
- ~/.nvm/nvm.sh run v0.6.14

script:
- make test
env:
global:
- TEST_COMMAND="composer test"

matrix:
allow_failures:
- php: hhvm
fast_finish: true
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"

before_install:
- if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi

install:
# To be removed when this issue will be resolved: https://github.com/composer/composer/issues/5355
- if [[ "$COMPOSER_FLAGS" == *"--prefer-lowest"* ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --quiet; fi
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction

before_script:
- ~/.nvm/nvm.sh install v0.6.14
- ~/.nvm/nvm.sh run v0.6.14

script:
- $TEST_COMMAND
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
"GuzzleHttp\\Tests\\Ring\\": "tests/"
}
},
"scripts": {
"test": "make test",
"test-ci": "make coverage"
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
Expand Down

0 comments on commit 4c8fe4c

Please sign in to comment.