-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
37 lines (37 loc) · 1.22 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
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true">
<testsuites>
<testsuite name="Ibexa\Bundle\User">
<directory>tests/bundle/</directory>
</testsuite>
<testsuite name="Ibexa\User">
<directory>tests/lib/</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/integration</directory>
</testsuite>
</testsuites>
<php>
<env name="KERNEL_CLASS" value="Ibexa\Tests\Integration\User\IbexaTestKernel" />
<env name="DATABASE_URL" value="sqlite://i@i/test.db" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
</php>
<filter>
<whitelist>
<directory>src</directory>
<exclude>
<directory>tests/bundle/</directory>
<directory>tests/lib/</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="\Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>