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

52 строки
2.2 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Default test suites declaration: run verification of coding standards and code integrity test suites
  5. *
  6. * Copyright © Magento, Inc. All rights reserved.
  7. * See COPYING.txt for license details.
  8. */
  9. -->
  10. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  11. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
  12. colors="true"
  13. columns="max"
  14. beStrictAboutTestsThatDoNotTestAnything="false"
  15. bootstrap="./framework/bootstrap.php">
  16. <testsuites>
  17. <testsuite name="Less Static Code Analysis">
  18. <file>testsuite/Magento/Test/Less/LiveCodeTest.php</file>
  19. </testsuite>
  20. <testsuite name="HTML Static Code Analysis">
  21. <file>testsuite/Magento/Test/Html/LiveCodeTest.php</file>
  22. </testsuite>
  23. <testsuite name="GraphQL Static Code Analysis">
  24. <file>testsuite/Magento/Test/GraphQl/LiveCodeTest.php</file>
  25. </testsuite>
  26. <testsuite name="XML Coding Standard Verification">
  27. <file>testsuite/Magento/Test/Xml/LiveCodeTest.php</file>
  28. </testsuite>
  29. <testsuite name="PHP Coding Standard Verification">
  30. <file>testsuite/Magento/Test/Php/LiveCodeTest.php</file>
  31. </testsuite>
  32. <testsuite name="Code Integrity Tests">
  33. <directory>testsuite/Magento/Test/Integrity</directory>
  34. </testsuite>
  35. </testsuites>
  36. <php>
  37. <ini name="date.timezone" value="America/Los_Angeles"/>
  38. <!-- TESTCODESTYLE_IS_FULL_SCAN - specify if full scan should be performed for test code style test -->
  39. <const name="TESTCODESTYLE_IS_FULL_SCAN" value="0"/>
  40. <!-- TESTS_COMPOSER_PATH - specify the path to composer binary, if a relative reference cannot be resolved -->
  41. <!--<const name="TESTS_COMPOSER_PATH" value="/usr/local/bin/composer"/>-->
  42. </php>
  43. <listeners>
  44. <listener class="Yandex\Allure\PhpUnit\AllurePhpUnit">
  45. <arguments>
  46. <string>var/allure-results</string> <!-- XML files output directory -->
  47. <boolean>true</boolean> <!-- Whether to delete previous results on rerun -->
  48. </arguments>
  49. </listener>
  50. </listeners>
  51. </phpunit>