-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathphpunit.xml.dist
46 lines (41 loc) · 1.67 KB
/
phpunit.xml.dist
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
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "true"
bootstrap = "modules/splashsync/vendor/autoload.php"
verbose = "false"
timeoutForLargeTests = "120"
cacheResult = "false"
xsi:noNamespaceSchemaLocation = "https://schema.phpunit.de/9.3/phpunit.xsd"
>
<coverage>
<include>
<directory>modules/splashsync/tests/*</directory>
<directory>modules/splashsync/vendor/splash/phpcore/*</directory>
</include>
<exclude>
<directory>modules/splashsync/vendor</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Core">
<directory>modules/splashsync/vendor/splash/phpcore/Tests</directory>
</testsuite>
<testsuite name="Local">
<directory>modules/splashsync/tests</directory>
</testsuite>
</testsuites>
<php>
<server name="SERVER_NAME" value="http://localhost/PrestaShop/Ps-Last"/>
<const name="SPLASH_DEBUG" value="true"/>
<server name="SPLASH_TRAVIS" value="true"/>
</php>
</phpunit>