Skip to content

Commit

Permalink
Update phpunit.xml and ignore phpunit.xml.bak
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Westergaard committed May 5, 2023
1 parent 9fc029a commit 4f9f45c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@

# PHPUnit
/.phpunit*
/phpunit.xml.bak
/clover.xml
26 changes: 13 additions & 13 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php"
colors="true" stopOnFailure="false"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
testdox="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
cacheDirectory=".phpunit.cache">
colors="true" stopOnFailure="false" beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true" testdox="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
cacheDirectory=".phpunit.cache" displayDetailsOnTestsThatTriggerDeprecations="true">
<testsuites>
<testsuite name="Units">
<directory>test/Unit</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" pathCoverage="true">
<report>
<clover outputFile="clover.xml" />
</report>
</coverage>
<php>
<env name="XDEBUG" value="coverage" />
</php>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./src/Facade</directory>
<file>./src/GA4Exception.php</file>
</exclude>
<report>
<clover outputFile="clover.xml"/>
</report>
</coverage>
<php>
<env name="XDEBUG" value="coverage" />
</php>
</source>
</phpunit>

0 comments on commit 4f9f45c

Please sign in to comment.