Skip to content

Commit f12c8a4

Browse files
committed
chore: refresh phpunit.xml.dist
1 parent d7f6318 commit f12c8a4

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
vendor/
22
.idea
33
.php_cs.cache
4+
.phpunit.cache

phpunit.xml.dist

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd">
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
cacheDirectory=".phpunit.cache"
6+
executionOrder="depends,defects"
7+
shortenArraysForExportThreshold="10"
8+
requireCoverageMetadata="false"
9+
beStrictAboutCoverageMetadata="true"
10+
beStrictAboutOutputDuringTests="true"
11+
displayDetailsOnPhpunitDeprecations="true"
12+
failOnPhpunitDeprecation="false"
13+
failOnRisky="true"
14+
failOnWarning="true">
315
<testsuites>
416
<testsuite name="Functional">
517
<directory>./test/Functional</directory>
@@ -18,8 +30,15 @@
1830
</testsuite>
1931
</testsuites>
2032
<coverage>
33+
<report>
34+
<clover outputFile="./clover.xml"/>
35+
</report>
36+
</coverage>
37+
<source ignoreIndirectDeprecations="true"
38+
restrictNotices="true"
39+
restrictWarnings="true">
2140
<include>
22-
<directory suffix=".php">./src</directory>
41+
<directory>src</directory>
2342
</include>
24-
</coverage>
43+
</source>
2544
</phpunit>

0 commit comments

Comments
 (0)