-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
37 lines (37 loc) 路 1.16 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
37 lines (37 loc) 路 1.16 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
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.2/phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
>
<testsuites>
<testsuite name="presence-api">
<directory suffix=".php">tests/</directory>
<exclude>tests/e2e</exclude>
<exclude>tests/stubs</exclude>
<exclude>tests/bootstrap.php</exclude>
<exclude>tests/class-wp-presence-unittestcase.php</exclude>
<exclude>tests/class-wp-presence-network-unittestcase.php</exclude>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">includes/</directory>
<file>presence-api.php</file>
</include>
<exclude>
<!--
WP_DEBUG-only developer tools. Excluded from the distributed zip via
.distignore and from codecov.yml, so they are not measured as shipped
product code either. scripts/check-debug-exclusions.sh checks all three
lists agree.
-->
<file>includes/db-viewer.php</file>
<file>includes/debugger-widget.php</file>
</exclude>
</coverage>
</phpunit>