phpunit.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
  4. colors="true"
  5. bootstrap="../../../../../dev/tests/integration/framework/bootstrap.php">
  6. <testsuites>
  7. <testsuite name="Temando Shipping Integration Tests">
  8. <directory>.</directory>
  9. </testsuite>
  10. </testsuites>
  11. <php>
  12. <includePath>.</includePath>
  13. <includePath>../../../../../dev/tests/integration/</includePath>
  14. <includePath>../../../../../dev/tests/integration/testsuite/</includePath>
  15. <ini name="date.timezone" value="Europe/Berlin" />
  16. <ini name="xdebug.max_nesting_level" value="200" />
  17. <const name="TESTS_INSTALL_CONFIG_FILE" value="etc/install-config-mysql.php"/>
  18. <const name="TESTS_GLOBAL_CONFIG_FILE" value="etc/config-global.php"/>
  19. <const name="TESTS_GLOBAL_CONFIG_DIR" value="../../../app/etc"/>
  20. <const name="TESTS_CLEANUP" value="disabled" />
  21. <const name="TESTS_MAGENTO_MODE" value="developer" />
  22. </php>
  23. <filter>
  24. <whitelist>
  25. <directory suffix=".php">../../</directory>
  26. <exclude>
  27. <directory>../../Test/</directory>
  28. <directory>../../Setup/</directory>
  29. <file>../../registration.php</file>
  30. </exclude>
  31. </whitelist>
  32. </filter>
  33. <logging>
  34. <log type="coverage-html" target="../../build/reports/integration/coverage/html"/>
  35. <log type="coverage-clover" target="../../build/reports/integration/coverage/clover.xml"/>
  36. <log type="junit" target="../../build/reports/integration/coverage/junit.xml"/>
  37. </logging>
  38. <listeners>
  39. <listener class="Magento\TestFramework\Event\PhpUnit"/>
  40. <listener class="Magento\TestFramework\ErrorLog\Listener"/>
  41. </listeners>
  42. </phpunit>