-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathphpunit.xml
50 lines (50 loc) · 2.55 KB
/
phpunit.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
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.2/phpunit.xsd"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="./framework/bootstrap.php"
stderr="true"
>
<testsuites>
<testsuite name="IntegrationTests">
<directory suffix="Test.php">../../../vendor/%COMPOSER_NAME%/Test/Integration</directory>
<directory suffix="Test.php">../../../vendor/%COMPOSER_NAME%/tests/Integration</directory>
<directory suffix="Test.php">../../../vendor/%COMPOSER_NAME%/tests/integration</directory>
<directory suffix="Test.php">../../../vendor/%COMPOSER_NAME%/src/Test/Integration</directory>
<directory suffix="Test.php">../../../vendor/%COMPOSER_NAME%/src/tests/Integration</directory>
<directory suffix="Test.php">../../../vendor/%COMPOSER_NAME%/src/tests/integration</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<exclude>
<directory>../../../lib/internal/*/*/Test</directory>
<directory>../../../lib/internal/*/*/*/Test</directory>
<directory>../../../setup/src/*/*/Test</directory>
<directory>../../../vendor/*/*/Test</directory>
</exclude>
</whitelist>
</filter>
<php>
<includePath>.</includePath>
<includePath>testsuite</includePath>
<ini name="date.timezone" value="America/Los_Angeles"/>
<ini name="xdebug.max_nesting_level" value="200"/>
<ini name="memory_limit" value="-1"/>
<const name="TESTS_INSTALL_CONFIG_FILE" value="etc/install-config-mysql.php"/>
<const name="TESTS_POST_INSTALL_SETUP_COMMAND_CONFIG_FILE" value="etc/post-install-setup-command-config.php"/>
<const name="TESTS_GLOBAL_CONFIG_FILE" value="etc/config-global.php"/>
<const name="TESTS_GLOBAL_CONFIG_DIR" value="../../../app/etc"/>
<const name="TESTS_CLEANUP" value="enabled"/>
<const name="TESTS_MEM_USAGE_LIMIT" value="8G"/>
<const name="TESTS_MEM_LEAK_LIMIT" value="0"/>
<const name="TESTS_EXTRA_VERBOSE_LOG" value="1"/>
<const name="TESTS_MAGENTO_MODE" value="developer"/>
<const name="TESTS_ERROR_LOG_LISTENER_LEVEL" value="-1"/>
</php>
<listeners>
<listener class="Magento\TestFramework\Event\PhpUnit"/>
<listener class="Magento\TestFramework\ErrorLog\Listener"/>
</listeners>
</phpunit>