-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
phpunit.xml
27 lines (26 loc) · 886 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="wp-plugin-dependencies">
<directory suffix=".php">./tests/</directory>
<exclude>./tests/test-sample.php</exclude>
<exclude>./tests/invalid</exclude>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" processUncoveredFiles="false" pathCoverage="true" cacheDirectory="./tests/phpunit/build/logs/phpunit-cache">
<include>
<directory suffix=".php">wp-admin</directory>
</include>
<report>
<text outputFile="php://stdout" showOnlySummary="true"/>
<html outputDirectory="./tests/phpunit/build/logs/coverage-html"/>
</report>
</coverage>
</phpunit>