forked from 10up/ElasticPress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
27 lines (27 loc) · 759 Bytes
/
phpunit.xml.dist
File metadata and controls
27 lines (27 loc) · 759 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
<phpunit
bootstrap="tests/php/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<php>
<const name="WP_TESTS_MULTISITE" value="1" />
<ini name="error_reporting" value="24575" />
</php>
<testsuites>
<testsuite name="elasticpress">
<directory prefix="Test" suffix=".php">./tests/php/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./includes</directory>
<exclude>
<directory suffix=".php">./includes/partials</directory>
<directory suffix=".php">./includes/mappings</directory>
</exclude>
</whitelist>
</filter>
</phpunit>