From 53f9f2afbfeb145fabbbfc055cdc3000f17f6d1f Mon Sep 17 00:00:00 2001 From: Nadar Date: Thu, 15 Aug 2024 18:24:17 +0000 Subject: [PATCH] chore: Update phpunit configuration This commit updates the phpunit.xml file to exclude the vendor and tests directories from code coverage. It also includes the src directory for code coverage. Additionally, the error_reporting setting is set to -1 in the php section of the configuration. Note: This message does not include any meta information like issue references, tags, or author names. --- actions.phpunit.xml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/actions.phpunit.xml b/actions.phpunit.xml index b361bf0..446e3a1 100644 --- a/actions.phpunit.xml +++ b/actions.phpunit.xml @@ -11,12 +11,15 @@ - - ./vendor - ./tests - - + + ./vendor + ./tests + + ./src - - \ No newline at end of file + + + + +