Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

103 строки
4.6 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
  10. colors="true"
  11. columns="max"
  12. beStrictAboutTestsThatDoNotTestAnything="false"
  13. bootstrap="./framework/bootstrap.php"
  14. stderr="true">
  15. <!-- Code coverage filters -->
  16. <coverage>
  17. <include>
  18. <directory suffix=".php">../../../app/code/Magento</directory>
  19. <directory suffix=".php">../../../lib/internal/Magento</directory>
  20. </include>
  21. </coverage>
  22. <!-- Test suites definition -->
  23. <testsuites>
  24. <testsuite name="Magento Setup/Upgrade Tests">
  25. <directory>testsuite</directory>
  26. </testsuite>
  27. </testsuites>
  28. <!-- PHP INI settings and constants definition -->
  29. <php>
  30. <includePath>.</includePath>
  31. <includePath>testsuite</includePath>
  32. <ini name="date.timezone" value="America/Los_Angeles"/>
  33. <ini name="xdebug.max_nesting_level" value="200"/>
  34. <const name="TESTS_INSTALL_CONFIG_FILE" value="{{local_config_file}}"/>
  35. <const name="TESTS_GLOBAL_CONFIG_FILE" value="etc/config-global.php"/>
  36. <const name="TESTS_GLOBAL_CONFIG_DIR" value="../../../app/etc"/>
  37. <const name="TESTS_CLEANUP" value="{{tests_cleanup}}"/>
  38. <const name="TESTS_MAGENTO_MODE" value="{{app_mode}}"/>
  39. <const name="TESTS_ERROR_LOG_LISTENER_LEVEL" value="1"/>
  40. </php>
  41. <!-- Test listeners -->
  42. <listeners>
  43. <listener class="Magento\TestFramework\Event\PhpUnit"/>
  44. <listener class="Magento\TestFramework\ErrorLog\Listener"/>
  45. <listener class="Yandex\Allure\PhpUnit\AllurePhpUnit">
  46. <arguments>
  47. <string>var/allure-results</string> <!-- XML files output directory -->
  48. <boolean>true</boolean> <!-- Whether to delete previous results on rerun -->
  49. <array> <!-- A list of custom annotations to ignore (optional) -->
  50. <element key="codingStandardsIgnoreStart">
  51. <string>codingStandardsIgnoreStart</string>
  52. </element>
  53. <element key="codingStandardsIgnoreEnd">
  54. <string>codingStandardsIgnoreEnd</string>
  55. </element>
  56. <element key="expectedExceptionMessageRegExp">
  57. <string>expectedExceptionMessageRegExp</string>
  58. </element>
  59. <element key="magentoAdminConfigFixture">
  60. <string>magentoAdminConfigFixture</string>
  61. </element>
  62. <element key="magentoAppArea">
  63. <string>magentoAppArea</string>
  64. </element>
  65. <element key="magentoAppIsolation">
  66. <string>magentoAppIsolation</string>
  67. </element>
  68. <element key="magentoCache">
  69. <string>magentoCache</string>
  70. </element>
  71. <element key="magentoComponentsDir">
  72. <string>magentoComponentsDir</string>
  73. </element>
  74. <element key="magentoConfigFixture">
  75. <string>magentoConfigFixture</string>
  76. </element>
  77. <element key="magentoDataFixture">
  78. <string>magentoDataFixture</string>
  79. </element>
  80. <element key="magentoDataFixtureBeforeTransaction">
  81. <string>magentoDataFixtureBeforeTransaction</string>
  82. </element>
  83. <element key="magentoDbIsolation">
  84. <string>magentoDbIsolation</string>
  85. </element>
  86. <element key="magentoIndexerDimensionMode">
  87. <string>magentoIndexerDimensionMode</string>
  88. </element>
  89. <element key="moduleName">
  90. <string>moduleName</string>
  91. </element>
  92. <element key="dataProviderFromFile">
  93. <string>dataProviderFromFile</string>
  94. </element>
  95. <element key="magentoSchemaFixture">
  96. <string>magentoSchemaFixture</string>
  97. </element>
  98. </array>
  99. </arguments>
  100. </listener>
  101. </listeners>
  102. </phpunit>