Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tests-only][full-ci]Tidy up the phpunit xml file for files_paperhive app #56

Merged
merged 1 commit into from
May 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>