forked from elkarte/Elkarte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit-webtest.xml
39 lines (34 loc) · 1.15 KB
/
phpunit-webtest.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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="bootstrapInstall.php">
<testsuites>
<testsuite name="Browser Tests">
<directory suffix="Web.php">../tests/install</directory>
<directory suffix="Web.php">../tests/headless</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/web.xml"/>
</report>
</coverage>
<php>
<const name="DBTYPE" value="MySQL"/>
<const name="PHPUNIT_SELENIUM" value="true"/>
<const name="PHPUNIT_TESTSUITE" value="true"/>
</php>
</phpunit>