Skip to content

Commit af47cb7

Browse files
Revert changes in the phpunit config
1 parent 458518a commit af47cb7

File tree

1 file changed

+19
-21
lines changed

1 file changed

+19
-21
lines changed

phpunit.xml.dist

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,23 @@
99
convertWarningsToExceptions="true"
1010
processIsolation="false"
1111
stopOnFailure="false">
12-
<coverage>
13-
<include>
14-
<directory suffix=".php">src/</directory>
15-
</include>
16-
<report>
17-
<clover outputFile="build/logs/clover.xml"/>
18-
<html outputDirectory="build/coverage"/>
19-
<text outputFile="build/coverage.txt"/>
20-
</report>
21-
</coverage>
22-
<testsuites>
23-
<testsuite name="Integration">
24-
<directory>tests/Integration</directory>
25-
</testsuite>
26-
<testsuite name="Unit">
27-
<directory>tests/Unit</directory>
28-
</testsuite>
29-
</testsuites>
30-
<logging>
31-
<junit outputFile="build/report.junit.xml"/>
32-
</logging>
12+
<testsuites>
13+
<testsuite name="Integration">
14+
<directory>tests/Integration</directory>
15+
</testsuite>
16+
<testsuite name="Unit">
17+
<directory>tests/Unit</directory>
18+
</testsuite>
19+
</testsuites>
20+
<filter>
21+
<whitelist>
22+
<directory suffix=".php">src/</directory>
23+
</whitelist>
24+
</filter>
25+
<logging>
26+
<log type="junit" target="build/report.junit.xml"/>
27+
<log type="coverage-html" target="build/coverage"/>
28+
<log type="coverage-text" target="build/coverage.txt"/>
29+
<log type="coverage-clover" target="build/logs/clover.xml"/>
30+
</logging>
3331
</phpunit>

0 commit comments

Comments
 (0)