-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathphpunit-paratest.xml.dist
More file actions
44 lines (42 loc) · 1.9 KB
/
Copy pathphpunit-paratest.xml.dist
File metadata and controls
44 lines (42 loc) · 1.9 KB
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
44
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
failOnRisky="true"
failOnWarning="true"
cacheDirectory=".phpunit.cache">
<php>
<ini name="error_reporting" value="-1"/>
<server name="KERNEL_CLASS" value="Zenstruck\Foundry\Tests\Fixture\TestKernel"/>
<server name="SHELL_VERBOSITY" value="-1"/>
<env name="PARATEST" value="1"/>
<env name="APP_ENV" value="test"/>
<env name="USE_PHP_84_LAZY_OBJECTS" value="1"/>
<env name="USE_DAMA_DOCTRINE_TEST_BUNDLE" value="1"/>
<env name="USE_FOUNDRY_PHPUNIT_EXTENSION" value="1"/>
<env name="FOUNDRY_FAKER_SEED" value="1234"/>
<env name="DATABASE_URL" value="sqlite:///%kernel.project_dir%/var/data.db"/>
<env name="MONGO_URL" value="mongodb://127.0.0.1:27018/dbName?compressors=disabled&gssapiServiceName=mongodb"/>
</php>
<testsuites>
<testsuite name="main">
<directory>tests</directory>
<exclude>tests/Integration/ResetDatabase</exclude>
</testsuite>
</testsuites>
<source ignoreSuppressionOfDeprecations="true" baseline="phpunit-deprecation-baseline.xml">
<include>
<directory>src</directory>
</include>
<exclude>
<directory>src/Test/Behat</directory>
</exclude>
</source>
<extensions>
<bootstrap class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
<bootstrap class="Zenstruck\Foundry\PHPUnit\FoundryExtension" />
<bootstrap class="Zenstruck\Foundry\Tests\Fixture\DoctrineCascadeRelationship\PhpUnitTestExtension" />
</extensions>
</phpunit>