-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
executable file
·60 lines (56 loc) · 1.9 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
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Symfony Validator
~
~ Type sensitive validating Software for Symfony Applications.
~
~ Copyright (c) 2020 Fabian Fröhlich <[email protected]> https://f-froehlich.de
~
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU Affero General Public License as
~ published by the Free Software Foundation, either version 3 of the
~ License, or (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU Affero General Public License for more details.
~
~ You should have received a copy of the GNU Affero General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
~
~ For all license terms see README.md and LICENSE Files in root directory of this Project.
~
-->
<phpunit
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
failOnRisky="true"
failOnWarning="true"
>
<php>
<ini name="error_reporting" value="-1"/>
<env name="REDIS_HOST" value="localhost"/>
<env name="MEMCACHED_HOST" value="localhost"/>
</php>
<testsuites>
<testsuite name="Unit">
<directory>./Tests/**/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory>./Tests/**/Integration</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
<exclude>
<directory>./src/Resources</directory>
<directory>./src/DependencyInjection</directory>
<directory>./Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>