Skip to content
This repository was archived by the owner on Feb 6, 2020. It is now read-only.

Commit 53ae109

Browse files
committed
Merge branch 'feature/209' into develop
Close #209
2 parents ac39019 + 2509b87 commit 53ae109

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cache:
88

99
env:
1010
global:
11-
- COMPOSER_ARGS="--no-interaction --no-plugins"
11+
- COMPOSER_ARGS="--no-interaction"
1212
- COVERAGE_DEPS="satooshi/php-coveralls"
1313

1414
matrix:
@@ -19,8 +19,9 @@ matrix:
1919
- php: 7.1
2020
env:
2121
- DEPS=locked
22+
- CS_CHECK=true
23+
- BENCHMARKS=true
2224
- TEST_COVERAGE=true
23-
- CHECK_CS=true
2425
- php: 7.1
2526
env:
2627
- DEPS=latest
@@ -35,12 +36,12 @@ matrix:
3536
- DEPS=latest
3637

3738
before_install:
38-
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || true ; fi
39+
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
3940

4041
install:
4142
- travis_retry composer install $COMPOSER_ARGS
4243
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
43-
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest --prefer-stable ; fi
44+
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
4445
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
4546
- stty cols 120 && composer show
4647

@@ -50,7 +51,7 @@ script:
5051
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
5152

5253
after_script:
53-
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer upload-coverage ; fi
54+
- if [[ $TEST_COVERAGE == 'true' ]]; then composer upload-coverage ; fi
5455

5556
notifications:
5657
email: false

0 commit comments

Comments
 (0)