-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathphpintegration.xml.dist
More file actions
28 lines (28 loc) · 963 Bytes
/
phpintegration.xml.dist
File metadata and controls
28 lines (28 loc) · 963 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
<phpunit
bootstrap="tests/phpintegration-bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
>
<php>
<env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/phpintegration-wp-config.php" />
</php>
<testsuites>
<testsuite name="Integration Tests">
<directory suffix=".php">tests/integration</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./wp-content/mu-plugins</directory>
<directory suffix=".php">./wp-content/themes</directory>
</include>
<exclude>
<directory suffix=".php">./wp-content/mu-plugins/vendor</directory>
</exclude>
</coverage>
</phpunit>