forked from WordPress/plugin-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
31 lines (31 loc) · 745 Bytes
/
phpunit.xml.dist
File metadata and controls
31 lines (31 loc) · 745 Bytes
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
28
29
30
31
<phpunit
bootstrap="tests/phpunit/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">includes/</directory>
<file>plugin.php</file>
</include>
</coverage>
<testsuites>
<testsuite name="default">
<directory suffix=".php">./tests/phpunit/tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>ms-required</group>
</exclude>
</groups>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">includes/</directory>
<file>plugin.php</file>
</whitelist>
</filter>
</phpunit>