forked from reisraff/input
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.ci
32 lines (31 loc) · 1.25 KB
/
phpunit.xml.ci
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="Linio Framework Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
<log type="coverage-crap4j" target="./build/logs/crap4j.xml"/>
<log type="junit" target="./build/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<file>src/Input/Constraint/ConstraintInterface.php</file>
<file>src/Input/Transformer/TransformerInterface.php</file>
<file>src/Input/InputTrait.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>