forked from acseo/TypesenseBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
24 lines (24 loc) · 959 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" colors="true" beStrictAboutOutputDuringTests="true" beStrictAboutTestsThatDoNotTestAnything="false" convertDeprecationsToExceptions="false" verbose="true" bootstrap="vendor/autoload.php">
<coverage>
<include>
<directory>./src</directory>
</include>
<exclude>
<directory>./src/Resources</directory>
</exclude>
</coverage>
<php>
<env name="KERNEL_CLASS" value="App\Kernel" />
<env name="TYPESENSE_URL" value="http://localhost:8108" />
<env name="TYPESENSE_KEY" value="123" />
</php>
<testsuites>
<testsuite name="ACSEO Typesense Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<extensions>
<extension class="ACSEO\TypesenseBundle\Tests\Hook\BypassFinalHook" />
</extensions>
</phpunit>