From 5a0eaccc70d6746cd02ec27bbb0cf7dfdddf3be3 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Mon, 4 Nov 2019 15:16:40 +0100 Subject: [PATCH] Fix the Travis config again The parenthesis around the statements are isolating the directory changes in a sub-command. So the right fix was not to remove the closing parenthesis, but to re-add the opening one. --- .travis.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ecd98c2a..b0431384d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,21 +15,21 @@ before_install: install: - travis_retry composer install - - cd extra/cssinliner-extra && travis_retry composer install - - cd extra/html-extra && travis_retry composer install - - cd extra/inky-extra && travis_retry composer install - - cd extra/intl-extra && travis_retry composer install - - cd extra/markdown-extra && travis_retry composer install - - cd extra/string-extra && travis_retry composer install + - (cd extra/cssinliner-extra && travis_retry composer install) + - (cd extra/html-extra && travis_retry composer install) + - (cd extra/inky-extra && travis_retry composer install) + - (cd extra/intl-extra && travis_retry composer install) + - (cd extra/markdown-extra && travis_retry composer install) + - (cd extra/string-extra && travis_retry composer install) script: - ./vendor/bin/simple-phpunit - - cd extra/cssinliner-extra && ./vendor/bin/simple-phpunit - - cd extra/html-extra && ./vendor/bin/simple-phpunit - - cd extra/inky-extra && ./vendor/bin/simple-phpunit - - cd extra/intl-extra && ./vendor/bin/simple-phpunit - - cd extra/markdown-extra && ./vendor/bin/simple-phpunit - - cd extra/string-extra && ./vendor/bin/simple-phpunit + - (cd extra/cssinliner-extra && ./vendor/bin/simple-phpunit) + - (cd extra/html-extra && ./vendor/bin/simple-phpunit) + - (cd extra/inky-extra && ./vendor/bin/simple-phpunit) + - (cd extra/intl-extra && ./vendor/bin/simple-phpunit) + - (cd extra/markdown-extra && ./vendor/bin/simple-phpunit) + - (cd extra/string-extra && ./vendor/bin/simple-phpunit) jobs: fast_finish: true