-
Notifications
You must be signed in to change notification settings - Fork 22
/
phpunit.xml
39 lines (36 loc) · 1.06 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
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="false"
>
<testsuites>
<testsuite>
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./admin</directory>
<directory>./core</directory>
<directory>./export</directory>
<directory>./frontend</directory>
<directory>./inc</directory>
<exclude>
<directory>./admin/pages</directory>
<directory>./admin/sections</directory>
<directory>./frontend/sections</directory>
<directory>./frontend/themes</directory>
<file>./core/config.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="coverage"/>
</logging>
</phpunit>