-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.dist.xml
More file actions
31 lines (28 loc) · 895 Bytes
/
phpunit.dist.xml
File metadata and controls
31 lines (28 loc) · 895 Bytes
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" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="Alma WooCommerce Unit Test Suite">
<directory>./tests/Unit</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="false">
<include>
<directory suffix=".php">./includes</directory>
</include>
<report>
<html outputDirectory="./.coverage-report"/>
</report>
</coverage>
<php>
<env name="ALMA_API_KEY" value="sk_test_*******"/>
<env name="ALMA_API_ROOT" value="alma-api-url"/>
</php>
</phpunit>