Skip to content

Commit aff802c

Browse files
author
Andrey Helldar
authored
Update phpunit.xml
1 parent ab45a10 commit aff802c

File tree

1 file changed

+7
-20
lines changed

1 file changed

+7
-20
lines changed

phpunit.xml

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,27 @@
33
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
44
backupGlobals="false"
55
backupStaticAttributes="false"
6-
beStrictAboutCoversAnnotation="true"
7-
beStrictAboutOutputDuringTests="true"
8-
beStrictAboutTodoAnnotatedTests="true"
96
bootstrap="vendor/autoload.php"
10-
cacheResultFile=".phpunit.cache/test-results"
117
colors="true"
128
convertErrorsToExceptions="true"
139
convertNoticesToExceptions="true"
1410
convertWarningsToExceptions="true"
15-
executionOrder="depends,defects"
16-
failOnRisky="true"
17-
failOnWarning="true"
1811
forceCoversAnnotation="false"
1912
stopOnError="false"
2013
stopOnFailure="false"
21-
stopOnIncomplete="false"
22-
stopOnRisky="false"
23-
stopOnSkipped="false"
24-
verbose="false"
14+
verbose="true"
2515
>
2616
<php>
2717
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
2818
</php>
2919
<testsuites>
3020
<testsuite name="default">
31-
<directory suffix="Test.php">tests</directory>
21+
<directory suffix="Test.php">./tests</directory>
3222
</testsuite>
3323
</testsuites>
34-
35-
<coverage
36-
cacheDirectory=".phpunit.cache/code-coverage"
37-
processUncoveredFiles="true">
38-
<include>
39-
<directory suffix=".php">src</directory>
40-
</include>
41-
</coverage>
24+
<logging>
25+
<log type="coverage-clover" target="build/logs/clover.xml"/>
26+
<log type="coverage-text" target="build/logs/coverage.txt"/>
27+
<log type="coverage-html" target="build/logs/coverage"/>
28+
</logging>
4229
</phpunit>

0 commit comments

Comments
 (0)