From e40296eeabd95e5d33b2e6dc9065765f3a9e3a86 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Mon, 8 Jul 2019 23:03:13 +0100 Subject: [PATCH] build: Remove reference of non-existent "Fuzz" and "Stub" PHPUnit groups These were removed from the phpunit.xml file recently (after having been unused for many years), but between the revert and resplit of the recent MediaWikiTestCase refactor, that change was lost and the group exclusion re-introduced. This removes it again, following 214750d8d224fc7. Change-Id: I9448854e5f1587b1083e78f61ef8b520722ad2b9 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c61febc33d..f7b72f5bba 100644 --- a/composer.json +++ b/composer.json @@ -120,7 +120,7 @@ "phpunit": "phpunit", "phpunit:unit": "phpunit --colors=always --testsuite=core:unit,extensions:unit,skins:unit", "phpunit:integration": "phpunit --colors=always --testsuite=core:integration,extensions:integration,skins:integration", - "phpunit:coverage": "phpunit --testsuite=core:unit --exclude-group Dump,Broken,ParserFuzz,Stub" + "phpunit:coverage": "phpunit --testsuite=core:unit --exclude-group Dump,Broken" }, "config": { "optimize-autoloader": true, -- 2.20.1