Skip to content

Commit b893527

Browse files
committed
Updated phpunit.xml
1 parent 6d69afe commit b893527

File tree

1 file changed

+14
-29
lines changed

1 file changed

+14
-29
lines changed

phpunit.xml

Lines changed: 14 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4-
bootstrap="tests/bootstrap.php"
5-
cacheResult="false"
6-
colors="true"
7-
executionOrder="random"
8-
failOnRisky="true"
9-
failOnWarning="true"
10-
failOnEmptyTestSuite="true"
11-
beStrictAboutChangesToGlobalState="true"
12-
beStrictAboutCoversAnnotation="true"
13-
beStrictAboutOutputDuringTests="true"
14-
beStrictAboutTodoAnnotatedTests="true"
15-
verbose="false"
16-
convertDeprecationsToExceptions="true">
17-
<testsuites>
18-
<testsuite name="PHPStan">
19-
<directory suffix="Test.php">tests/PHPStan</directory>
20-
<exclude>tests/PHPStan/Reflection/ReflectionProviderGoldenTest.php</exclude>
21-
</testsuite>
22-
</testsuites>
23-
24-
<groups>
25-
<exclude>
26-
<group>exec</group>
27-
<group>levels</group>
28-
</exclude>
29-
</groups>
30-
<logging/>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="tests/bootstrap.php" cacheResult="false" colors="true" executionOrder="random" failOnRisky="true" failOnWarning="true" failOnEmptyTestSuite="true" beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" beStrictAboutCoverageMetadata="true">
3+
<testsuites>
4+
<testsuite name="PHPStan">
5+
<directory suffix="Test.php">tests/PHPStan</directory>
6+
<exclude>tests/PHPStan/Reflection/ReflectionProviderGoldenTest.php</exclude>
7+
</testsuite>
8+
</testsuites>
9+
<groups>
10+
<exclude>
11+
<group>exec</group>
12+
<group>levels</group>
13+
</exclude>
14+
</groups>
15+
<logging/>
3116
</phpunit>

0 commit comments

Comments
 (0)