-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
41 lines (41 loc) · 1.17 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
41 lines (41 loc) · 1.17 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.0/phpunit.xsd"
colors="true"
requireCoverageMetadata="false"
beStrictAboutCoverageMetadata="true"
processIsolation="false"
failOnRisky="true"
failOnWarning="true"
cacheResult="false"
failOnDeprecation="true"
>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./src/includes/constants</directory>
<file>./src/includes/constants.php</file>
<file>./src/authenticate.php</file>
<file>./src/category.php</file>
<file>./src/gadgetapi.php</file>
<file>./src/generate_template.php</file>
<file>./src/gitpull.php</file>
<file>./src/kill_big_job.php</file>
<file>./src/linked_pages.php</file>
<file>./src/process_page.php</file>
</exclude>
</source>
<testsuites>
<testsuite name="TestSuite">
<directory suffix=".php">./tests/phpunit</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<clover outputFile="coverage.xml"/>
</report>
</coverage>
</phpunit>