phpunit-all.xml.dist 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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/4.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\Adapter\AllureAdapter">
  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>