-
Notifications
You must be signed in to change notification settings - Fork 64
/
phpunit.xml
31 lines (31 loc) · 1.04 KB
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests/unit-phpunit</directory>
</testsuite>
<testsuite name="integration">
<directory suffix="Test.php">tests/integration-phpunit</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory="coverage"
includeUncoveredFiles="true"
processUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<include>
<directory suffix=".php">src</directory>
<file>nokogiri.php</file>
</include>
<exclude>
<directory suffix=".php">src/Old</directory>
</exclude>
</coverage>
</phpunit>