-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
42 lines (42 loc) · 1.42 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
35
36
37
38
39
40
41
42
<?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"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
executionOrder="random"
resolveDependencies="true">
<coverage>
<include>
<directory>src</directory>
</include>
<report>
<clover outputFile="build/logs/phpunit/coverage/coverage.xml"/>
<html outputDirectory="build/logs/phpunit/coverage"/>
<text outputFile="php://stdout" showOnlySummary="true"/>
<xml outputDirectory="build/logs/phpunit/coverage/coverage-xml"/>
</report>
</coverage>
<php>
<ini name="max_execution_time" value="-1"/>
<ini name="html_errors" value="false"/>
<ini name="memory_limit" value="2G"/>
<env name="error_reporting" value="E_ALL"/>
<env name="display_errors" value="1"/>
<env name="ENVIRONMENT" value="test"/>
</php>
<testsuites>
<testsuite name="Unit">
<directory>./tests</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="build/logs/phpunit/junit.xml"/>
</logging>
</phpunit>