Skip to content

Commit a750dee

Browse files
committed
wip it
1 parent 68453ed commit a750dee

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

phpunit.xml.dist

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,38 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5-
backupGlobals="false"
6-
backupStaticAttributes="false"
7-
bootstrap="vendor/autoload.php"
8-
colors="true"
9-
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
12-
processIsolation="false"
13-
stopOnFailure="false"
14-
executionOrder="random"
15-
failOnWarning="true"
16-
failOnRisky="true"
17-
failOnEmptyTestSuite="true"
18-
beStrictAboutOutputDuringTests="true"
19-
verbose="true"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
5+
backupGlobals="false"
6+
bootstrap="vendor/autoload.php"
7+
colors="true"
8+
processIsolation="false"
9+
stopOnFailure="false"
10+
executionOrder="random"
11+
failOnWarning="true"
12+
failOnRisky="true"
13+
failOnEmptyTestSuite="true"
14+
beStrictAboutOutputDuringTests="true"
15+
cacheDirectory=".phpunit.cache"
16+
backupStaticProperties="false"
2017
>
2118
<testsuites>
2219
<testsuite name="Codinglabs Test Suite">
2320
<directory>tests</directory>
2421
</testsuite>
2522
</testsuites>
26-
<coverage>
23+
<logging>
24+
<junit outputFile="build/report.junit.xml"/>
25+
</logging>
26+
<source>
2727
<include>
2828
<directory suffix=".php">./src</directory>
2929
</include>
30+
</source>
31+
<coverage>
3032
<report>
3133
<html outputDirectory="build/coverage"/>
3234
<text outputFile="build/coverage.txt"/>
3335
<clover outputFile="build/logs/clover.xml"/>
3436
</report>
3537
</coverage>
36-
<logging>
37-
<junit outputFile="build/report.junit.xml"/>
38-
</logging>
3938
</phpunit>

0 commit comments

Comments
 (0)