forked from manuxi/SuluSchemaOrgBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
27 lines (25 loc) · 976 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
27 lines (25 loc) · 976 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="Tests/test-bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage includeUncoveredFiles="true">
<include>
<directory>.</directory>
</include>
<exclude>
<directory>Resources/</directory>
<directory>Tests/</directory>
<directory>vendor/</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Sulu SchemaOrg Bundle">
<directory>./Tests</directory>
</testsuite>
</testsuites>
<php>
<server name="SYMFONY_PHPUNIT_VERSION" value="8"/>
<env name="KERNEL_CLASS" value="Plozmun\Bundle\SuluSchemaOrgBundle\Tests\Application\Kernel"/>
<env name="APP_ENV" value="test" force="true"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
<server name="SYMFONY_PHPUNIT_REMOVE" value="symfony/yaml"/>
</php>
</phpunit>