Skip to content

Commit 2e37758

Browse files
committed
build: update phpunit xml configuration
1 parent 91d8e0c commit 2e37758

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

phpunit.xml

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false"
33
beStrictAboutTestsThatDoNotTestAnything="true" bootstrap="vendor/autoload.php" colors="true"
44
processIsolation="false" stopOnError="false" stopOnFailure="false"
5-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" cacheDirectory=".phpunit.cache"
66
backupStaticProperties="false">
7-
<coverage>
8-
<include>
9-
<directory suffix=".php">src/</directory>
10-
</include>
11-
</coverage>
7+
<coverage/>
128
<testsuites>
139
<testsuite name="Unit">
1410
<directory suffix="Test.php">./tests/lib/Unit/</directory>
@@ -27,4 +23,9 @@
2723
<ini name="error_reporting" value="E_ALL"/>
2824
<env name="DB_CONNECTION" value="testing"/>
2925
</php>
26+
<source>
27+
<include>
28+
<directory suffix=".php">src/</directory>
29+
</include>
30+
</source>
3031
</phpunit>

0 commit comments

Comments
 (0)