Skip to content

Commit 2029fdd

Browse files
committed
Fix coverage
1 parent ec831bf commit 2029fdd

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

phpunit.xml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache">
3-
<coverage>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="./tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">./lib</directory>
6+
</include>
47
<report>
58
<clover outputFile="build/logs/clover.xml"/>
69
<html outputDirectory="build/coverage" lowUpperBound="35" highLowerBound="70"/>
710
<text outputFile="php://stdout" showUncoveredFiles="true"/>
811
</report>
912
</coverage>
1013
<testsuites>
11-
<testsuite name="The project's test suite">
14+
<testsuite name="Unit tests">
1215
<directory>./vendor/simplesamlphp/simplesamlphp-test-framework/src</directory>
1316
<directory>./tests</directory>
1417
</testsuite>
1518
</testsuites>
1619
<logging/>
17-
<source>
18-
<include>
19-
<directory suffix=".php">./src</directory>
20-
</include>
21-
</source>
2220
</phpunit>

0 commit comments

Comments
 (0)