-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit-core-integration-legacy-solr.xml
43 lines (43 loc) · 2.05 KB
/
phpunit-core-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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version = '1.0' encoding = 'utf-8'?>
<!-- Overridden from ibexa/core, needs to be synchronized with it -->
<!-- See: vendor/ibexa/core/phpunit-integration-legacy-solr.xml -->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
processIsolation="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true"
failOnWarning="true"
>
<php>
<env name="setupFactory" value="Netgen\IbexaSearchExtra\Tests\Integration\SetupFactory\RegressionSolr" />
<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="DATABASE_URL" value="sqlite://:memory:" />
<env name="KERNEL_CLASS" value="Ibexa\Contracts\Solr\Test\IbexaSolrTestKernel"/>
<env name="SEARCH_ENGINE" value="solr"/>
</php>
<testsuites>
<!-- Search service is used all over the place, so we must run entire integration test suite -->
<testsuite name="integration_repository">
<directory>tests/lib/Kernel</directory>
<directory>vendor/ibexa/core/tests/integration/Core</directory>
<exclude>vendor/ibexa/core/tests/integration/Core/Repository/Filtering</exclude>
<!-- Excluding because overridden locally -->
<exclude>vendor/ibexa/core/tests/integration/Core/Repository/SearchServiceTest.php</exclude>
<exclude>vendor/ibexa/core/tests/integration/Core/Repository/SearchServiceLocationTest.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">tests/integration</directory>
</whitelist>
</filter>
</phpunit>