forked from meilisearch/meilisearch-symfony
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
26 lines (26 loc) · 1.02 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="tests/bootstrap.php"
convertDeprecationsToExceptions="false"
xsi:noNamespaceSchemaLocation="vendor/bin/.phpunit/phpunit/phpunit.xsd">
<coverage>
<include>
<directory>src/</directory>
</include>
</coverage>
<php>
<env name="KERNEL_CLASS" value="Meilisearch\Bundle\Tests\Kernel"/>
<env name="APP_ENV" value="test"/>
<env name="APP_DEBUG" value="false"/>
<env name="MEILISEARCH_PREFIX" value="sf_phpunit_"/>
<env name="MEILISEARCH_URL" value="http://127.0.0.1:7700"/>
<env name="MEILISEARCH_API_KEY" value="masterKey"/>
</php>
<testsuites>
<testsuite name="Integration">
<directory suffix=".php">tests/Integration</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix=".php">tests/Unit</directory>
</testsuite>
</testsuites>
</phpunit>