-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
18 lines (18 loc) · 823 Bytes
/
phpunit.xml
File metadata and controls
18 lines (18 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/phpunit/bootstrap.php" backupGlobals="false" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" cacheDirectory=".phpunit.cache">
<php>
<env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/phpunit/wp-tests-config.php"/>
</php>
<testsuites>
<testsuite name="unit">
<directory prefix="" suffix=".php">./tests/phpunit/</directory>
<exclude>./tests/phpunit/wp-tests-config.php</exclude>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" pathCoverage="false" ignoreDeprecatedCodeUnits="true" disableCodeCoverageIgnore="true"/>
<source>
<include>
<directory suffix=".php">includes</directory>
</include>
</source>
</phpunit>