Skip to content

Commit 4f9f45c

Browse files
author
Alex Westergaard
committed
Update phpunit.xml and ignore phpunit.xml.bak
1 parent 9fc029a commit 4f9f45c

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44

55
# PHPUnit
66
/.phpunit*
7+
/phpunit.xml.bak
78
/clover.xml

phpunit.xml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php"
3-
colors="true" stopOnFailure="false"
4-
beStrictAboutTestsThatDoNotTestAnything="true"
5-
beStrictAboutTodoAnnotatedTests="true"
6-
testdox="true"
7-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
8-
cacheDirectory=".phpunit.cache">
3+
colors="true" stopOnFailure="false" beStrictAboutTestsThatDoNotTestAnything="true"
4+
beStrictAboutTodoAnnotatedTests="true" testdox="true"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
6+
cacheDirectory=".phpunit.cache" displayDetailsOnTestsThatTriggerDeprecations="true">
97
<testsuites>
108
<testsuite name="Units">
119
<directory>test/Unit</directory>
1210
</testsuite>
1311
</testsuites>
1412
<coverage includeUncoveredFiles="true" pathCoverage="true">
13+
<report>
14+
<clover outputFile="clover.xml" />
15+
</report>
16+
</coverage>
17+
<php>
18+
<env name="XDEBUG" value="coverage" />
19+
</php>
20+
<source>
1521
<include>
1622
<directory suffix=".php">./src</directory>
1723
</include>
1824
<exclude>
1925
<directory suffix=".php">./src/Facade</directory>
2026
<file>./src/GA4Exception.php</file>
2127
</exclude>
22-
<report>
23-
<clover outputFile="clover.xml"/>
24-
</report>
25-
</coverage>
26-
<php>
27-
<env name="XDEBUG" value="coverage" />
28-
</php>
28+
</source>
2929
</phpunit>

0 commit comments

Comments
 (0)