-
Notifications
You must be signed in to change notification settings - Fork 70
/
phpunit.xml.dist
29 lines (29 loc) · 1.04 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="vendor/autoload.php" convertDeprecationsToExceptions="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>src/</directory>
</include>
<exclude>
<file>src/DependencyInjection/AlgoliaSearchExtension.php</file>
<file>src/Services/NullSearchService.php</file>
</exclude>
<report>
<clover outputFile="./clover.xml"/>
</report>
</coverage>
<php>
<env name="KERNEL_CLASS" value="Algolia\SearchBundle\Kernel"/>
<env name="APP_ENV" value="test"/>
<env name="APP_DEBUG" value="false"/>
<env name="ALGOLIA_PREFIX" value="sf_phpunit_"/>
<env name="CIRCLE_BUILD_NUM" value=""/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
</php>
<testsuites>
<testsuite name="TestCase">
<directory suffix=".php">tests/TestCase/</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>