forked from google/site-kit-wp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
24 lines (24 loc) · 774 Bytes
/
phpunit.xml.dist
File metadata and controls
24 lines (24 loc) · 774 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
<phpunit
bootstrap="tests/phpunit/bootstrap.php"
backupGlobals="false"
processIsolation="false"
colors="true"
convertDeprecationsToExceptions="true">
<testsuites>
<testsuite name="Site Kit Test Suite">
<directory suffix=".php">./tests/phpunit/integration</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>ms-required</group>
</exclude>
</groups>
<php>
<ini name="error_reporting" value="32767" />
<ini name="display_errors" value="1" />
<ini name="display_startup_errors" value="1" />
<const name="GOOGLESITEKIT_TESTS" value="1" />
<const name="WP_HTTP_BLOCK_EXTERNAL" value="1" />
</php>
</phpunit>