File tree Expand file tree Collapse file tree 1 file changed +23
-16
lines changed Expand file tree Collapse file tree 1 file changed +23
-16
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit
3
- colors =" true"
4
- processIsolation =" false"
5
- stopOnFailure =" false"
6
- bootstrap =" vendor/autoload.php"
7
- >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ backupGlobals =" false"
4
+ bootstrap =" vendor/autoload.php"
5
+ colors =" true"
6
+ processIsolation =" false"
7
+ stopOnFailure =" false"
8
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd" >
8
9
9
10
<!-- Add any additional test suites you want to run here -->
10
11
<testsuites >
13
14
</testsuite >
14
15
</testsuites >
15
16
17
+ <coverage includeUncoveredFiles =" true"
18
+ pathCoverage =" false"
19
+ ignoreDeprecatedCodeUnits =" true"
20
+ disableCodeCoverageIgnore =" true" >
21
+ <report >
22
+ <clover outputFile =" build/logs/clover.xml" />
23
+ <html outputDirectory =" build/html" lowUpperBound =" 50" highLowerBound =" 90" />
24
+ </report >
25
+ </coverage >
26
+
16
27
<!-- Ignore vendor tests in code coverage reports -->
17
- <filter >
18
- <whitelist processUncoveredFilesFromWhitelist =" true" >
19
- <directory suffix =" .php" >src/</directory >
20
- </whitelist >
21
- </filter >
22
-
23
- <logging >
24
- <log type =" coverage-clover" target =" build/logs/clover.xml" />
25
- <log type =" coverage-html" target =" build/html" />
26
- </logging >
28
+ <source >
29
+ <include >
30
+ <directory >./src</directory >
31
+ </include >
32
+ </source >
33
+
27
34
</phpunit >
You can’t perform that action at this time.
0 commit comments