forked from elkarte/Elkarte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit-mariadb.xml
40 lines (36 loc) · 1.16 KB
/
phpunit-mariadb.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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true"
bootstrap="bootstrap.php">
<testsuites>
<testsuite name="DB Tests">
<directory suffix="DatabaseTestExt.php">../tests</directory>
</testsuite>
<testsuite name="Unit Tests">
<directory suffix="Test.php">../tests</directory>
</testsuite>
<testsuite name="Bootstrap Tests">
<directory suffix="BootstrapRunTestExt.php">../tests</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="false">
<include>
<directory suffix=".php">../sources</directory>
</include>
<exclude>
<directory suffix=".php">../sources/ext</directory>
</exclude>
<report>
<clover outputFile="/home/runner/work/Elkarte/Elkarte/elkarte/tmp/db.xml"/>
</report>
</coverage>
<php>
<const name="DBTYPE" value="MySQL"/>
</php>
</phpunit>