-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml
43 lines (43 loc) · 1.71 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
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
syntaxCheck="true"
>
<testsuites>
<testsuite name="Respress Test Suite">
<directory suffix=".php">./tests/unit-tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">.</directory>
<exclude>
<directory suffix=".php">./apigen/</directory>
<directory suffix=".php">./i18n/</directory>
<directory suffix=".php">./includes/api/legacy/</directory>
<directory suffix=".php">./includes/gateways/simplify-commerce-deprecated/</directory>
<directory suffix=".php">./includes/gateways/simplify-commerce/includes/</directory>
<directory suffix=".php">./includes/libraries/</directory>
<directory suffix=".php">./includes/shipping/legacy-flat-rate/</directory>
<directory suffix=".php">./includes/shipping/legacy-free-shipping/</directory>
<directory suffix=".php">./includes/shipping/legacy-international-delivery/</directory>
<directory suffix=".php">./includes/shipping/legacy-local-delivery/</directory>
<directory suffix=".php">./includes/shipping/legacy-local-pickup/</directory>
<directory suffix=".php">./includes/updates/</directory>
<directory suffix=".php">./includes/widgets/</directory>
<directory suffix=".php">./templates/</directory>
<directory>./tests/</directory>
<directory suffix=".php">./tmp/</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./tmp/coverage" charset="UTF-8" />
</logging>
</phpunit>