-
Notifications
You must be signed in to change notification settings - Fork 4
/
phpunit.xml.dist
50 lines (50 loc) · 2.19 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="tests/bootstrap.php"
cacheDirectory=".phpunit.cache"
displayDetailsOnTestsThatTriggerDeprecations="true"
>
<php>
<ini name="memory_limit" value="4096M"/>
<ini name="error_reporting" value="-1"/>
<env name="APP_ENV" value="test" force="true"/>
<env name="SHELL_VERBOSITY" value="-1"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
<env name="DATABASE_URL" value="mysql://draw:draw@mysql:3306/draw"/>
</php>
<testsuites>
<testsuite name="all">
<directory>./tests/</directory>
<directory>./packages/*/Tests</directory>
</testsuite>
</testsuites>
<coverage/>
<source>
<include>
<directory>./packages/*</directory>
<directory>./src</directory>
</include>
<exclude>
<file>./packages/core/.phpstorm.meta.php</file>
<file>./packages/core/ignore_annotations.php</file>
<file>./packages/doctrine-extra/.phpstorm.meta.php</file>
<file>./packages/messenger/.phpstorm.meta.php</file>
<directory>./packages/*/Tests</directory>
<directory>./packages/*/vendor</directory>
<directory>tests</directory>
</exclude>
</source>
<extensions>
<bootstrap class="Draw\Bundle\TesterBundle\PHPUnit\Extension\DoctrineTransaction\DoctrineTransactionExtension" />
<bootstrap class="Draw\Bundle\TesterBundle\PHPUnit\Extension\DeleteTemporaryEntity\DeleteTemporaryEntityExtension">
<parameter name="ignoreMissingService" value="1" />
</bootstrap>
<bootstrap class="Draw\Component\Tester\PHPUnit\Extension\CarbonReset\CarbonResetExtension"/>
<bootstrap class="Draw\Component\Tester\PHPUnit\Extension\SetUpAutowire\SetUpAutowireExtension"/>
<bootstrap class="Draw\Bundle\TesterBundle\PHPUnit\Extension\KernelShutdown\KernelShutdownExtension"/>
</extensions>
</phpunit>