-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml.dist
50 lines (43 loc) · 1.81 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
47
48
49
50
<?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"
convertWarningsToExceptions = "true"
convertNoticesToExceptions = "true"
processIsolation = "false"
stopOnFailure = "true"
bootstrap = "./vendor/splash/magento2/tests/framework/bootstrap.php"
verbose = "true"
timeoutForLargeTests = "120"
cacheResult = "false"
>
<testsuites>
<testsuite name="Core">
<directory>vendor/splash/phpcore/Tests</directory>
</testsuite>
<testsuite name="Local">
<directory>vendor/splash/magento2/tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
</whitelist>
</filter>
<php>
<server name="SERVER_NAME" value="http://latest.magento2.local"/>
<const name="SPLASH_DEBUG" value="true"/>
<const name="MAGE_ROOT" value="/var/www/html"/>
<server name="SPLASH_TRAVIS" value="true"/>
<!-- Only Test Specified Types -->
<!--<const name="SPLASH_TYPES" value="Address" />-->
<!--<const name="SPLASH_TYPES" value="ThirdParty" />-->
<!--<const name="SPLASH_TYPES" value="Product" />-->
<!--<const name="SPLASH_TYPES" value="Order" />-->
<!--<const name="SPLASH_TYPES" value="Invoice" />-->
</php>
</phpunit>