Skip to content

Commit b373941

Browse files
committed
fix phpunit config
1 parent 080dcbd commit b373941

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

phpunit.xml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
4+
backupGlobals="false"
45
bootstrap="vendor/autoload.php"
6+
colors="true"
7+
processIsolation="false"
8+
stopOnFailure="false"
59
cacheDirectory=".phpunit.cache"
6-
executionOrder="depends,defects"
7-
requireCoverageMetadata="false"
8-
beStrictAboutCoverageMetadata="true"
9-
beStrictAboutOutputDuringTests="true"
10-
displayDetailsOnPhpunitDeprecations="true"
11-
failOnPhpunitDeprecation="true"
12-
failOnRisky="true"
13-
failOnWarning="true">
10+
backupStaticProperties="false">
1411
<testsuites>
15-
<testsuite name="default">
16-
<directory>tests</directory>
12+
<testsuite name="Config">
13+
<directory suffix="Test.php">tests</directory>
1714
</testsuite>
1815
</testsuites>
19-
20-
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
16+
<source>
2117
<include>
22-
<directory>src</directory>
18+
<directory suffix=".php">src</directory>
2319
</include>
2420
</source>
2521
</phpunit>

0 commit comments

Comments
 (0)