123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?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"
- beStrictAboutTestsThatDoNotTestAnything="false"
- bootstrap="./framework/bootstrap.php"
- stderr="true"
- >
- <!-- Test suites definition -->
- <testsuites>
- <testsuite name="Magento Setup/Upgrade Tests">
- <directory suffix="Test.php">testsuite</directory>
- </testsuite>
- </testsuites>
- <!-- Code coverage filters -->
- <filter>
- <whitelist addUncoveredFilesFromWhiteList="true">
- <directory suffix=".php">../../../app/code/Magento</directory>
- <directory suffix=".php">../../../lib/internal/Magento</directory>
- </whitelist>
- </filter>
- <!-- 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"/>
- <const name="TESTS_INSTALL_CONFIG_FILE" value="{{local_config_file}}"/>
- <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="{{tests_cleanup}}"/>
- <const name="TESTS_MAGENTO_MODE" value="{{app_mode}}"/>
- <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"/>
- <listener class="Yandex\Allure\Adapter\AllureAdapter">
- <arguments>
- <string>var/allure-results</string> <!-- XML files output directory -->
- <boolean>true</boolean> <!-- Whether to delete previous results on rerun -->
- <array> <!-- A list of custom annotations to ignore (optional) -->
- <element key="codingStandardsIgnoreStart">
- <string>codingStandardsIgnoreStart</string>
- </element>
- <element key="codingStandardsIgnoreEnd">
- <string>codingStandardsIgnoreEnd</string>
- </element>
- <element key="expectedExceptionMessageRegExp">
- <string>expectedExceptionMessageRegExp</string>
- </element>
- <element key="magentoAdminConfigFixture">
- <string>magentoAdminConfigFixture</string>
- </element>
- <element key="magentoAppArea">
- <string>magentoAppArea</string>
- </element>
- <element key="magentoAppIsolation">
- <string>magentoAppIsolation</string>
- </element>
- <element key="magentoCache">
- <string>magentoCache</string>
- </element>
- <element key="magentoComponentsDir">
- <string>magentoComponentsDir</string>
- </element>
- <element key="magentoConfigFixture">
- <string>magentoConfigFixture</string>
- </element>
- <element key="magentoDataFixture">
- <string>magentoDataFixture</string>
- </element>
- <element key="magentoDataFixtureBeforeTransaction">
- <string>magentoDataFixtureBeforeTransaction</string>
- </element>
- <element key="magentoDbIsolation">
- <string>magentoDbIsolation</string>
- </element>
- <element key="magentoIndexerDimensionMode">
- <string>magentoIndexerDimensionMode</string>
- </element>
- <element key="moduleName">
- <string>moduleName</string>
- </element>
- <element key="dataProviderFromFile">
- <string>dataProviderFromFile</string>
- </element>
- <element key="magentoSchemaFixture">
- <string>magentoSchemaFixture</string>
- </element>
- </array>
- </arguments>
- </listener>
- </listeners>
- </phpunit>
|