Skip to content

Commit 94f56a9

Browse files
committed
chore: update PHPUnit configuration
1 parent 5adc85e commit 94f56a9

File tree

1 file changed

+6
-15
lines changed

1 file changed

+6
-15
lines changed

phpunit.xml.dist

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
backupGlobals="false"
4-
beStrictAboutTestsThatDoNotTestAnything="true"
5-
beStrictAboutOutputDuringTests="true"
3+
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
64
bootstrap="vendor/autoload.php"
75
colors="true"
8-
failOnRisky="true"
9-
failOnWarning="true"
10-
processIsolation="false"
11-
stopOnError="false"
12-
stopOnFailure="false"
13-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
14-
cacheDirectory=".phpunit.cache"
15-
backupStaticProperties="false">
6+
>
167
<testsuites>
17-
<testsuite name="">
8+
<testsuite name="Tests">
189
<directory suffix="Test.php">./tests</directory>
1910
</testsuite>
2011
</testsuites>
21-
<coverage>
12+
<source>
2213
<include>
23-
<directory suffix=".php">src</directory>
14+
<directory suffix=".php">./src</directory>
2415
</include>
2516
<exclude>
2617
<directory suffix=".php">./src/Components/Database/stubs</directory>
2718
<directory suffix=".php">./src/Components/Log/stubs</directory>
2819
</exclude>
29-
</coverage>
20+
</source>
3021
</phpunit>

0 commit comments

Comments
 (0)