-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathphpunit.xml.dist
60 lines (54 loc) · 2.45 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"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
cacheDirectory=".cache/.phpunit.cache"
failOnDeprecation="true"
failOnPhpunitDeprecation="true"
failOnNotice="true"
failOnRisky="true"
failOnWarning="true">
<php>
<ini name="error_reporting" value="-1"/>
<ini name="intl.default_locale" value="en"/>
<ini name="intl.error_level" value="0"/>
<ini name="memory_limit" value="-1"/>
<env name="APP_ENV" value="test"/>
<env name="APP_DEBUG" value="1"/>
<env name="APP_SECRET" value="s$cretf0rt3st"/>
<env name="SHELL_VERBOSITY" value="-1"/>
<env name="MAILER_URL" value="null://localhost"/>
<env name="DATABASE_URL" value="mysql://db_user:[email protected]:3306/db_name"/>
</php>
<source ignoreSuppressionOfDeprecations="true">
<include>
<directory>./elasticms-admin/src/</directory>
<directory>./elasticms-cli/src/</directory>
<directory>./elasticms-web/src/</directory>
<directory>./EMS/client-helper-bundle/src/</directory>
<directory>./EMS/common-bundle/src/</directory>
<directory>./EMS/core-bundle/src/</directory>
<directory>./EMS/form-bundle/src/</directory>
<directory>./EMS/helpers/src/</directory>
<directory>./EMS/submission-bundle/src/</directory>
<directory>./EMS/xliff/src/</directory>
</include>
<deprecationTrigger>
<function>trigger_deprecation</function>
<method>Doctrine\Deprecations\Deprecation::trigger</method>
<method>Doctrine\Deprecations\Deprecation::delegateTriggerToBackend</method>
</deprecationTrigger>
</source>
<testsuites>
<testsuite name="EMS">
<directory>./EMS/client-helper-bundle/tests</directory>
<directory>./EMS/common-bundle/tests</directory>
<directory>./EMS/core-bundle/tests</directory>
<directory>./EMS/form-bundle/tests</directory>
<directory>./EMS/helpers/tests/Unit</directory>
<directory>./EMS/submission-bundle/tests</directory>
<directory>./EMS/xliff/tests</directory>
</testsuite>
</testsuites>
</phpunit>