-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update phpunit.xml and ignore phpunit.xml.bak
- Loading branch information
Alex Westergaard
committed
May 5, 2023
1 parent
9fc029a
commit 4f9f45c
Showing
2 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
|
||
# PHPUnit | ||
/.phpunit* | ||
/phpunit.xml.bak | ||
/clover.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |