generated from jrtashjian/pluginwp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml.dist
30 lines (30 loc) · 898 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit
bootstrap="phpunit/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertDeprecationsToExceptions="true"
>
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">./phpunit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./</directory>
<exclude>
<directory suffix=".php">build</directory>
<directory suffix=".php">includes/BlockLibrary/BlockPatterns</directory>
<directory suffix=".php">node_modules</directory>
<directory suffix=".php">phpunit</directory>
<directory suffix=".php">vendor</directory>
<directory suffix=".php">vendor_prefixed</directory>
<file>scoper.inc.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>