-
Notifications
You must be signed in to change notification settings - Fork 13
/
phpunit-integration-legacy-solr.xml
28 lines (28 loc) · 1.51 KB
/
phpunit-integration-legacy-solr.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
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="bootstrap.php" processIsolation="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" beStrictAboutTestsThatDoNotTestAnything="false" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">tests/integration</directory>
</include>
</coverage>
<php>
<env name="setupFactory" value="Ibexa\Tests\Solr\SetupFactory\LegacySetupFactory"/>
<env name="backendVersion" value="5"/>
<env name="fixtureDir" value="Solr"/>
<env name="solrServer" value="http://localhost:8983/"/>
<env name="CORES_SETUP" value="dedicated"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
<ini name="error_reporting" value="-1"/>
<env name="KERNEL_CLASS" value="Ibexa\Contracts\Solr\Test\IbexaSolrTestKernel"/>
<env name="SEARCH_ENGINE" value="solr"/>
<env name="DATABASE_URL" value="sqlite://:memory:"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
</php>
<testsuites>
<!-- Search service is used all over the place, so we must run entire integration test suite -->
<testsuite name="integration_repository">
<directory>tests/integration/Core</directory>
<exclude>tests/integration/Core/Repository/Filtering</exclude>
</testsuite>
</testsuites>
</phpunit>