Skip to content

Commit 3b1f06e

Browse files
committed
Fix build to work correctly with phpunit 5.
1 parent 0a53396 commit 3b1f06e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
$phpunitConfiguration = PHPUnit_Util_Configuration::getInstance(__DIR__ . '/phpunit.xml');
2525
$phpunitArguments = ['coverageHtml' => __DIR__ . '/coverage', 'configuration' => $phpunitConfiguration];
2626
$testRunner = new PHPUnit_TextUI_TestRunner();
27-
$result = $testRunner->doRun($phpunitConfiguration->getTestSuiteConfiguration(), $phpunitArguments);
27+
$result = $testRunner->doRun($phpunitConfiguration->getTestSuiteConfiguration(), $phpunitArguments, false);
2828
if (!$result->wasSuccessful()) {
2929
exit(1);
3030
}

0 commit comments

Comments
 (0)