8000 bug #25700 Run simple-phpunit with --no-suggest option (ro0NL) · symfony/symfony@840a3d8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 840a3d8

Browse files
committed
bug #25700 Run simple-phpunit with --no-suggest option (ro0NL)
This PR was merged into the 3.3 branch. Discussion ---------- Run simple-phpunit with --no-suggest option | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes/no | Fixed tickets | #... <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | symfony/symfony-docs#... <!--highly recommended for new features--> This should reduce the output on CI a bit :) (see https://travis-ci.org/msgphp/msgphp/jobs/325750064#L865) Not really tested.. so i hope someone can confirm. AFAIK it happens from here. Commits ------- 7c9a6c3 Run simple-phpunit with --no-suggest option
2 parents 9419535 + 7c9a6c3 commit 840a3d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/PhpUnit/bin/simple-phpunit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__
7676
passthru("$COMPOSER require --no-update symfony/phpunit-bridge \"~3.4-beta5@dev|^4.0-beta5@dev\"");
7777
$prevRoot = getenv('COMPOSER_ROOT_VERSION');
7878
putenv("COMPOSER_ROOT_VERSION=$PHPUNIT_VERSION.99");
79-
$exit = proc_close(proc_open("$COMPOSER install --no-dev --prefer-dist --no-progress --ansi", array(), $p, getcwd(), null, array('bypass_shell' => true)));
79+
$exit = proc_close(proc_open("$COMPOSER install --no-dev --prefer-dist --no-suggest --no-progress --ansi", array(), $p, getcwd(), null, array('bypass_shell' => true)));
8080
putenv('COMPOSER_ROOT_VERSION'.(false !== $prevRoot ? '='.$prevRoot : ''));
8181
if ($exit) {
8282
exit($exit);

0 commit comments

Comments
 (0)
0