-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
39 lines (39 loc) · 1.49 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
39 lines (39 loc) · 1.49 KB
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
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
bootstrap="vendor/codeigniter4/framework/system/Test/bootstrap.php"
backupGlobals="false"
beStrictAboutOutputDuringTests="true"
cacheDirectory="build/.phpunit.cache"
colors="true"
executionOrder="random"
failOnRisky="true"
failOnWarning="true">
<coverage includeUncoveredFiles="true">
<report>
<clover outputFile="build/phpunit/clover.xml"/>
<html outputDirectory="build/phpunit/html"/>
<php outputFile="build/phpunit/coverage.serialized"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
<xml outputDirectory="build/phpunit/xml-coverage"/>
</report>
</coverage>
<testsuites>
<testsuite name="CodeIgniter SSE">
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<php>
<env name="XDEBUG_MODE" value="coverage"/>
<env name="COMPOSER_DISABLE_XDEBUG_WARN" value="1"/>
<server name="app.baseURL" value="https://example.com/"/>
<const name="HOMEPATH" value="./"/>
<const name="CONFIGPATH" value="vendor/codeigniter4/framework/app/Config/"/>
<const name="PUBLICPATH" value="./public/"/>
</php>
</phpunit>