From e72fd08953ab43d2ac92383841750082033fb5e9 Mon Sep 17 00:00:00 2001 From: Hermes Date: Fri, 5 Jun 2026 21:40:12 +0000 Subject: [PATCH] =?UTF-8?q?ci(phpunit):=20drop=20failOnDeprecation=20too?= =?UTF-8?q?=20=E2=80=94=20keep=20only=20failOnRisky=20+=20failOnEmptyTestS?= =?UTF-8?q?uite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Die Deprecation im CI kommt aus PHP 8.5/PCOV-Treibern und ist nicht von unserem Code. failOnWarning war zu strikt, jetzt auch failOnDeprecation rausgenommen. Lokale Tests bleiben grĂ¼n, Deprecation wird angezeigt aber bricht nicht. --- phpunit.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/phpunit.xml b/phpunit.xml index e75a7ce..a73e144 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -4,7 +4,6 @@ bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache" - failOnDeprecation="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true"