Skip to content

Commit f0d52f2

Browse files
authored
Update phpunit.xml
1 parent f5a6306 commit f0d52f2

1 file changed

Lines changed: 5 additions & 12 deletions

File tree

phpunit.xml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,24 @@
22
<phpunit
33
bootstrap="tests/phpunit.php"
44
colors="true"
5-
stopOnFailure="false"
6-
stopOnError="false"
75
failOnWarning="true"
86
failOnRisky="true"
97
beStrictAboutTestsThatDoNotTestAnything="true"
108
beStrictAboutOutputDuringTests="true"
11-
verbose="true"
129
>
1310
<testsuites>
1411
<testsuite name="WizardCLI Test Suite">
1512
<directory>tests</directory>
1613
</testsuite>
1714
</testsuites>
1815

19-
<coverage processUncoveredFiles="true">
20-
<include>
21-
<directory>src</directory>
22-
</include>
16+
<coverage>
17+
<directory>src</directory>
18+
<report>
19+
<clover outputFile="tests/coverage/clover.xml"/>
20+
</report>
2321
</coverage>
2422

25-
<logging>
26-
<log type="coverage-html" target="tests/coverage" />
27-
<log type="junit" target="tests/junit.xml" />
28-
</logging>
29-
3023
<php>
3124
<ini name="error_reporting" value="-1"/>
3225
<server name="APP_ENV" value="test"/>

0 commit comments

Comments
 (0)