Skip to content

Commit fcc3e8e

Browse files
committed
Issue #86: Align phpunit.xml.dist files in packages.
1 parent df06da6 commit fcc3e8e

1 file changed

Lines changed: 23 additions & 12 deletions

File tree

phpunit.xml.dist

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,35 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
4+
colors="true"
45
bootstrap="vendor/autoload.php"
5-
executionOrder="depends,defects"
6-
beStrictAboutOutputDuringTests="true"
7-
beStrictAboutTodoAnnotatedTests="true"
8-
convertDeprecationsToExceptions="true"
6+
displayDetailsOnIncompleteTests="true"
7+
displayDetailsOnSkippedTests="true"
8+
displayDetailsOnPhpunitDeprecations="true"
9+
displayDetailsOnTestsThatTriggerDeprecations="true"
10+
displayDetailsOnTestsThatTriggerErrors="true"
11+
displayDetailsOnTestsThatTriggerNotices="true"
12+
displayDetailsOnTestsThatTriggerWarnings="true"
13+
failOnEmptyTestSuite="true"
14+
failOnIncomplete="true"
15+
failOnNotice="true"
16+
failOnSkipped="true"
17+
failOnPhpunitDeprecation="true"
18+
failOnDeprecation="true"
919
failOnRisky="true"
1020
failOnWarning="true"
11-
verbose="true"
12-
colors="true"
13-
backupGlobals="false"
1421
>
15-
22+
<php>
23+
<ini name="error_reporting" value="32767"/>
24+
</php>
1625
<testsuites>
1726
<testsuite name="default">
1827
<directory>./tests/src</directory>
1928
</testsuite>
2029
</testsuites>
21-
<php>
22-
<ini name="error_reporting" value="-1"/>
23-
</php>
30+
<source>
31+
<include>
32+
<directory>./src/</directory>
33+
</include>
34+
</source>
2435
</phpunit>

0 commit comments

Comments
 (0)