|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<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"> |
3 |
| - <coverage> |
4 |
| - <include> |
5 |
| - <directory>src/</directory> |
6 |
| - </include> |
7 |
| - <exclude> |
8 |
| - <file>src/DependencyInjection/MeiliSearchExtension.php</file> |
9 |
| - <file>src/Services/NullSearchService.php</file> |
10 |
| - </exclude> |
11 |
| - </coverage> |
12 |
| - <php> |
13 |
| - <env name="KERNEL_CLASS" value="MeiliSearch\Bundle\Test\Kernel"/> |
14 |
| - <env name="APP_ENV" value="test"/> |
15 |
| - <env name="APP_DEBUG" value="false"/> |
16 |
| - <env name="MEILISEARCH_PREFIX" value="sf_phpunit_"/> |
17 |
| - <env name="MEILISEARCH_URL" value="http://127.0.0.1:7700"/> |
18 |
| - <env name="MEILISEARCH_API_KEY" value="masterKey"/> |
19 |
| - <env name="TRAVIS_JOB_NUMBER" value=""/> |
20 |
| - <env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/> |
21 |
| - </php> |
22 |
| - <testsuites> |
23 |
| - <testsuite name="TestCase"> |
24 |
| - <directory suffix=".php">tests/TestCase/</directory> |
25 |
| - </testsuite> |
26 |
| - </testsuites> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="vendor/autoload.php" |
| 3 | + convertDeprecationsToExceptions="false" |
| 4 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"> |
| 5 | + <coverage> |
| 6 | + <include> |
| 7 | + <directory>src/</directory> |
| 8 | + </include> |
| 9 | + </coverage> |
| 10 | + <php> |
| 11 | + <env name="KERNEL_CLASS" value="MeiliSearch\Bundle\Test\Kernel"/> |
| 12 | + <env name="APP_ENV" value="test"/> |
| 13 | + <env name="APP_DEBUG" value="false"/> |
| 14 | + <env name="MEILISEARCH_PREFIX" value="sf_phpunit_"/> |
| 15 | + <env name="MEILISEARCH_URL" value="http://127.0.0.1:7700"/> |
| 16 | + <env name="MEILISEARCH_API_KEY" value="masterKey"/> |
| 17 | + <env name="TRAVIS_JOB_NUMBER" value=""/> |
| 18 | + <env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/> |
| 19 | + </php> |
| 20 | + <testsuites> |
| 21 | + <testsuite name="Integration"> |
| 22 | + <directory suffix=".php">tests/Integration</directory> |
| 23 | + </testsuite> |
| 24 | + <testsuite name="Unit"> |
| 25 | + <directory suffix=".php">tests/Unit</directory> |
| 26 | + </testsuite> |
| 27 | + </testsuites> |
27 | 28 | </phpunit>
|
0 commit comments