Skip to content

Commit

Permalink
chore: Update phpunit configuration
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nadar committed Aug 15, 2024
1 parent 8c481e5 commit 53f9f2a
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions actions.phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@
</testsuite>
</testsuites>
<coverage>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
</exclude>
<include>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
</exclude>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
</phpunit>
</coverage>
<php>
<ini name="error_reporting" value="-1"/>
</php>
</phpunit>

0 comments on commit 53f9f2a

Please sign in to comment.