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
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.2/phpunit.xsd"
colors="true"
columns="max"
bootstrap="bootstrap.php"
backupGlobals="false"
verbose="true"
>
<testsuites>
<testsuite name="All Tests">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="Magento\Mtf\System\Browser\Listener" />
<listener class="Magento\Mtf\System\Isolation\Listener">
<arguments>
<object class="Magento\Mtf\System\Isolation\Driver\Base" />
</arguments>
</listener>
<listener class="Magento\Mtf\System\Event\StateListener" />
<listener class="Yandex\Allure\Adapter\AllureAdapter">
<arguments>
<string>var/allure-results</string> <!-- XML files output directory -->
<boolean>false</boolean> <!-- Whether to delete previous results on rerun -->
<array> <!-- A list of custom annotations to ignore (optional) -->
<element key="0">
<string>ZephyrId</string>
</element>
<element key="1">
<string>Group</string>
</element>
</array>
</arguments>
</listener>
</listeners>
<php>
<env name="app_frontend_url" value="http://127.0.0.1/" />
<env name="app_backend_url" value="http://127.0.0.1/backend/" />
<env name="testsuite_rule" value="basic" />
<env name="testsuite_rule_path" value="Magento/Mtf/TestSuite/InjectableTests" />
<env name="log_directory" value="var/log" />
<env name="events_preset" value="base" />
<env name="module_whitelist" value="Magento_Install,Magento_Setup" />
<env name="basedir" value="var/log" />
<env name="credentials_file_path" value="./credentials.xml.dist" />
<env name="mage_mode" value="developer" />
<env name="magento_timezone" value="America/Los_Angeles" />
</php>
</phpunit>