-
Notifications
You must be signed in to change notification settings - Fork 22
/
phpunit.xml.dist
47 lines (47 loc) · 1.66 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
colors="true"
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="./vendor/autoload.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>src</directory>
</include>
<exclude>
<directory>src/Resources</directory>
</exclude>
<report>
<clover outputFile="build/clover.xml"/>
<html outputDirectory="build/coverage-html" lowUpperBound="30" highLowerBound="80"/>
</report>
</coverage>
<testsuites>
<testsuite name="FlagbitTableAttributeBundle_Test">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<env name="KERNEL_CLASS" value="Flagbit\Bundle\TableAttributeBundle\Test\Kernel\TestKernel"/>
<env name="APP_ENV" value="test"/>
<env name="APP_INDEX_HOSTS" value="elasticsearch:9200"/>
<env name="APP_DATABASE_HOST" value="mysql"/>
<env name="APP_DATABASE_PORT" value=""/>
<env name="APP_DATABASE_NAME" value="akeneo_pim"/>
<env name="APP_DATABASE_USER" value="akeneo_pim"/>
<env name="APP_DATABASE_PASSWORD" value="akeneo_pim"/>
<env name="APP_DEFAULT_LOCALE" value="en"/>
<env name="AKENEO_PIM_URL" value="localhost:8080"/>
<env name="APP_DEBUG" value="0"/>
</php>
<logging>
<junit outputFile="build/junit.xml"/>
</logging>
</phpunit>