Skip to content

Commit 2aa4f99

Browse files
tvdijenghalse
authored andcommitted
Fix coverage reports
1 parent e703a35 commit 2aa4f99

1 file changed

Lines changed: 4 additions & 16 deletions

File tree

phpunit.xml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,14 @@
11
<?xml version="1.0" encoding="utf-8" ?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
colors="true"
5-
convertErrorsToExceptions="true"
6-
convertNoticesToExceptions="true"
7-
convertWarningsToExceptions="true"
8-
processIsolation="false"
9-
stopOnFailure="false"
10-
bootstrap="./tests/bootstrap.php">
2+
<phpunit bootstrap="tests/bootstrap.php">
113
<testsuites>
12-
<testsuite name="Unit Tests">
13-
<directory>./tests/</directory>
4+
<testsuite name="The project's test suite">
5+
<directory>./vendor/simplesamlphp/simplesamlphp-test-framework/tests/</directory>
6+
<directory>tests/</directory>
147
</testsuite>
158
</testsuites>
169
<filter>
1710
<whitelist processUncoveredFilesFromWhitelist="true">
1811
<directory suffix=".php">./lib</directory>
19-
<exclude>
20-
<directory>./vendor/</directory>
21-
<directory>./tests/</directory>
22-
</exclude>
2312
</whitelist>
2413
</filter>
2514
<logging>
@@ -28,4 +17,3 @@
2817
<log type="coverage-clover" target="build/logs/clover.xml" />
2918
</logging>
3019
</phpunit>
31-

0 commit comments

Comments
 (0)