From 85955d82a6b618f7488ec18221d1205941f5f069 Mon Sep 17 00:00:00 2001 From: Rob Bast Date: Mon, 23 Feb 2015 09:57:54 +0100 Subject: [PATCH] Raise timeout to 5 minutes --- tests/Composer/Test/AllFunctionalTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Composer/Test/AllFunctionalTest.php b/tests/Composer/Test/AllFunctionalTest.php index 4a23c5717..6670cc4fa 100644 --- a/tests/Composer/Test/AllFunctionalTest.php +++ b/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'])) {