X-Git-Url: https://git.immae.eu/?p=github%2Fshaarli%2FShaarli.git;a=blobdiff_plain;f=.travis.yml;h=cb81846f306a9001721de5e75ede34518e230779;hp=25304120470574cb951f19aafb28e0075e322646;hb=HEAD;hpb=ab58f2542072e6bf34acd862f6cfed84b33feb29 diff --git a/.travis.yml b/.travis.yml index 25304120..422bf835 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ matrix: install: - composer self-update --2 - composer update --ignore-platform-req=php - - composer remove phpunit/phpunit + - composer remove --dev --ignore-platform-req=php phpunit/phpunit - composer require --dev --ignore-platform-req=php phpunit/php-text-template ^2.0 - composer require --dev --ignore-platform-req=php phpunit/phpunit ^9.0 - language: php @@ -49,6 +49,10 @@ cache: directories: - $HOME/.composer/cache +before_install: + # Disable xdebug: it significantly speed up tests and linter, and we don't use coverage yet + - phpenv config-rm xdebug.ini || echo 'No xdebug config.' + install: # install/update composer and php dependencies - composer config --unset platform && composer config platform.php $TRAVIS_PHP_VERSION @@ -60,4 +64,5 @@ before_script: script: - make clean - make check_permissions + - make code_sniffer - make all_tests