-
Notifications
You must be signed in to change notification settings - Fork 9
/
phpunit.xml
34 lines (31 loc) · 1.05 KB
/
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
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="./bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">./source</directory>
</include>
<exclude>
<directory suffix=".php">./source/php/AcfFields</directory>
</exclude>
<report>
<text outputFile="php://stdout" showUncoveredFiles="true"/>
<html outputDirectory="./tests/phpunit/.coverage"/>
<clover outputFile="./tests/phpunit/.coverage/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="default">
<directory suffix=".test.php">source/php</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="E_ALL" />
</php>
</phpunit>