-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
34 lines (34 loc) · 1.17 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="tests/bootstrap.php"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>src</directory>
</include>
<exclude>
<directory>tests/bundle/</directory>
<directory>tests/lib/</directory>
</exclude>
</coverage>
<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>
<listeners>
<listener class="\Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>