-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.rw.xml
43 lines (42 loc) · 1.88 KB
/
phpunit.rw.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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright © Reach Digital (https://www.reachdigital.io/)
~ See LICENSE.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"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="./framework/bootstrap.php"
stderr="true"
>
<!-- Test suites definition -->
<testsuites>
<testsuite name="IntegrationTests">
<directory>../../../vendor/rocketweb/module-cms-import-export/Test/Integration</directory>
</testsuite>
</testsuites>
<!-- PHP INI settings and constants definition -->
<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>
<!-- Test listeners -->
<listeners>
<listener class="Magento\TestFramework\Event\PhpUnit"/>
<listener class="Magento\TestFramework\ErrorLog\Listener"/>
</listeners>
</phpunit>