This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
forked from zend-patterns/ZendServerDeploymentHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
51 lines (47 loc) · 1.67 KB
/
phpunit.xml.dist
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
43
44
45
46
47
48
49
50
51
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutOutputDuringTests="true"
forceCoversAnnotation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="true"
colors="false">
<testsuites>
<testsuite name="Zend Server DepH Deployment Suite">
<directory>./tests/Deployment</directory>
</testsuite>
<testsuite name="Zend Server DepH File Suite">
<directory>./tests/File</directory>
</testsuite>
<testsuite name="Zend Server DepH Pipeline Suite">
<directory>./tests/Pipeline</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">src</directory>
<exclude>
<directory suffix=".php">tests/unit/</directory>
</exclude>
</whitelist>
</filter>
<groups>
<exclude>
<group>disable</group>
<group>integration</group>
</exclude>
</groups>
<php>
<ini name="date.timezone" value="UTC"/>
<ini name="memory_limit" value="128M"/>
<ini name="error_reporting" value="-1"/>
<ini name="zend.enable_gc" value="0"/>
</php>
</phpunit>