forked from Automattic/newspack-extended-access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
18 lines (18 loc) · 912 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/class-newspack-extended-access-unit-tests-bootstrap.php" backupGlobals="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" verbose="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">./includes</directory>
</include>
<exclude>
<directory suffix=".php">./node_modules</directory>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./vendor</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Newspack Test Suite">
<directory prefix="test-" suffix=".php">./tests/unit-tests</directory>
</testsuite>
</testsuites>
</phpunit>