-
-
Notifications
You must be signed in to change notification settings - Fork 585
/
phpunit.xml.dist
27 lines (27 loc) · 943 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
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" colors="true" beStrictAboutOutputDuringTests="true" failOnRisky="true" failOnWarning="false" bootstrap="tests/bootstrap.php" cacheDirectory=".phpunit.cache">
<php>
<ini name="error_reporting" value="-1"/>
<ini name="serialize_precision" value="14"/>
<ini name="date.timezone" value="UTC"/>
</php>
<testsuites>
<testsuite name="JMS Serializer Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>performance</group>
</exclude>
</groups>
<!-- PHPUnit >=9 coverage filters -->
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<file>./src/Annotation/ReadOnly.php</file>
</exclude>
</coverage>
</phpunit>