minor #3188 Fix the Travis config again (stof)

This PR was merged into the 3.x branch.

Discussion
----------

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 replaces #3187, which was merged even though Travis was still broken.

Commits
-------

5a0eaccc Fix the Travis config again
This commit is contained in:
Fabien Potencier
2019-11-04 15:21:40 +01:00
+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