Skip to content

Commit

Permalink
Trying to increase max execution time another way
Browse files Browse the repository at this point in the history
  • Loading branch information
weotch committed Jun 22, 2017
1 parent 26831af commit 3b8cc94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ install:
- composer install

script:
- php -d max_execution_time=1200 vendor/bin/phpunit --coverage-clover build/logs/clover.xml --coverage-text
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml --coverage-text

after_success:
- travis_retry php vendor/bin/coveralls
1 change: 1 addition & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ abstract class TestCase extends LaravelTestCase
protected function setUp()
{
parent::setUp();
set_time_limit(1200);
$this->mockDisk();
}

Expand Down

0 comments on commit 3b8cc94

Please sign in to comment.