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

35 строки
1.2 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Run all available 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="http://schema.phpunit.de/9.1/phpunit.xsd"
  12. colors="true"
  13. columns="max"
  14. bootstrap="./framework/bootstrap.php"
  15. >
  16. <testsuites>
  17. <testsuite name="All Static Code Analysis Tests">
  18. <directory>testsuite/Magento/Test/</directory>
  19. </testsuite>
  20. </testsuites>
  21. <php>
  22. <ini name="date.timezone" value="America/Los_Angeles"/>
  23. <!-- TESTCODESTYLE_IS_FULL_SCAN - specify if full scan should be performed for test code style test -->
  24. <const name="TESTCODESTYLE_IS_FULL_SCAN" value="0"/>
  25. </php>
  26. <listeners>
  27. <listener class="Yandex\Allure\PhpUnit\AllurePhpUnit">
  28. <arguments>
  29. <string>var/allure-results</string> <!-- XML files output directory -->
  30. <boolean>true</boolean> <!-- Whether to delete previous results on rerun -->
  31. </arguments>
  32. </listener>
  33. </listeners>
  34. </phpunit>