-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
30 lines (29 loc) · 810 Bytes
/
phpunit.xml.dist
File metadata and controls
30 lines (29 loc) · 810 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
29
30
<?xml version="1.0"?>
<phpunit
bootstrap="tests/phpunit/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<php>
<env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/phpunit/wp-config.php" />
</php>
<testsuites>
<testsuite name="PHPUnit Test">
<directory prefix="" suffix=".php">./tests/phpunit/</directory>
<exclude>./tests/phpunit/wp-config.php</exclude>
</testsuite>
</testsuites>
<coverage cacheDirectory="./coverage"
includeUncoveredFiles="true"
processUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<include>
<directory suffix=".php">inc</directory>
</include>
</coverage>
</phpunit>