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.
This commit is contained in:
Christophe Coevoet
2019-11-04 15:16:40 +01:00
committed by GitHub
parent 0a07efff39
commit 5a0eaccc70
+12 -12
View File
@@ -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