Skip to content

Commit

Permalink
Merge pull request #56 from owncloud/moveUnitTestsForFilesPaperHive
Browse files Browse the repository at this point in the history
[tests-only][full-ci]Tidy up the phpunit xml file for `files_paperhive` app
  • Loading branch information
phil-davis authored May 24, 2022
2 parents 9e45db7 + 8b1acc5 commit f2231de
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,22 @@
failOnWarning="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
>
<testsuites>
<testsuite name='unit'>
<directory suffix='Test.php'>./tests/unit</directory>
</testsuite>
</testsuites>
<!-- filters for code coverage -->
<filter>
<whitelist>
<directory suffix=".php">.</directory>
<exclude>
<directory suffix=".php">./l10n</directory>
<directory suffix=".php">./tests</directory>
</exclude>
</whitelist>
</filter>
<logging>
<!-- and this is where your report will be written -->
<log type="coverage-clover" target="./tests/output/clover.xml"/>
</logging>
timeoutForLargeTests="900">
<testsuites>
<testsuite name='unit'>
<directory suffix='Test.php'>./tests/unit</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">.</directory>
</include>
<exclude>
<directory suffix=".php">./l10n</directory>
<directory suffix=".php">./tests</directory>
</exclude>
<report>
<clover outputFile="tests/output/clover.xml"/>
</report>
</coverage>
</phpunit>

0 comments on commit f2231de

Please sign in to comment.