We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41edf1c commit 2d0e00bCopy full SHA for 2d0e00b
.travis.yml
@@ -4,12 +4,17 @@ php:
4
- 7.1
5
- 7.2
6
7
+cache:
8
+ directories:
9
+ - $HOME/.composer/cache
10
+
11
+services:
12
+ - mysql
13
14
install:
- - composer update
- - composer require php-coveralls/php-coveralls --dev
15
+ - COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --no-interaction --prefer-dist
16
+ - COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
17
-script:
- - vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml
18
+script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
19
-after_script:
- - php vendor/bin/php-coveralls -v
20
+after_success: php vendor/bin/php-coveralls --verbose
0 commit comments