-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
25 lines (24 loc) · 947 Bytes
/
phpunit.xml.dist
File metadata and controls
25 lines (24 loc) · 947 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
<phpunit
bootstrap="phpunit-bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Foo Bar">
<directory prefix="class-test-" suffix=".php">../wp-content/plugins/foo-bar/tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">../wp-content/plugins</directory>
<exclude>
<directory suffix=".php">../wp-content/plugins/opcache</directory>
<directory suffix=".php">../wp-content/plugins/query-monitor</directory>
<directory suffix=".php">../wp-content/plugins/wp-redis</directory>
</exclude>
</whitelist>
</filter>
</phpunit>