-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit-coverage.xml.dist
More file actions
31 lines (31 loc) · 1.17 KB
/
Copy pathphpunit-coverage.xml.dist
File metadata and controls
31 lines (31 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
<?xml version="1.0"?>
<!--
Both suites in a single run, so the report covers what the whole suite
reaches. The unit tests do not need WordPress, but they work with it loaded,
and a clover report cannot be merged across runs.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap-integration.php"
colors="true"
failOnWarning="true"
failOnRisky="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
convertDeprecationsToExceptions="false">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
<testsuite name="integration">
<directory suffix="Test.php">tests/Integration</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<file>libresign-wp-customizations.php</file>
<directory suffix=".php">includes</directory>
<directory suffix=".php">src</directory>
</include>
</coverage>
</phpunit>