-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
27 lines (25 loc) · 855 Bytes
/
phpunit.xml
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/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<php>
<ini name="error_reporting" value="24575"/>
<env name="WP_PHPUNIT__TESTS_CONFIG" value="./tests/wp-tests-config.php"/>
</php>
<testsuites>
<testsuite name="unit">
<directory phpVersion="8.1" phpVersionOperator=">=" suffix="Test.php">./tests/unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./tests/clover.xml"/>
</logging>
</phpunit>