Sfoglia il codice sorgente

Raise timeout to 5 minutes

Rob Bast 10 anni fa
parent
commit
85955d82a6
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      tests/Composer/Test/AllFunctionalTest.php

+ 1 - 1
tests/Composer/Test/AllFunctionalTest.php

@@ -89,7 +89,7 @@ class AllFunctionalTest extends \PHPUnit_Framework_TestCase
         putenv('COMPOSER_HOME='.$this->testDir.'home');
 
         $cmd = 'php '.escapeshellarg(self::$pharPath).' --no-ansi '.$testData['RUN'];
-        $proc = new Process($cmd, __DIR__.'/Fixtures/functional');
+        $proc = new Process($cmd, __DIR__.'/Fixtures/functional', null, null, 300);
         $exitcode = $proc->run();
 
         if (isset($testData['EXPECT'])) {