From c15ba5fc20f458de2967cdad8fdfe8ba5adda341 Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Thu, 19 May 2016 03:48:22 -0700 Subject: [PATCH] PHPUnit: turn off verbose option It's very common these days for test runs on ordinary rigs to skip hundreds of tests, which makes getting the part of the results you care about (the test failures) an arduous trip up hundreds of lines in your terminal buffer. Change-Id: Iaf714b86473379e1ad32e4d2d93e83018a757782 --- tests/phpunit/suite.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/suite.xml b/tests/phpunit/suite.xml index 63f5de0179..ed18205753 100644 --- a/tests/phpunit/suite.xml +++ b/tests/phpunit/suite.xml @@ -16,7 +16,7 @@ beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" beStrictAboutTestSize="true" - verbose="true"> + verbose="false"> includes -- 2.20.1