phpunit.xml.dist 510 B

1234567891011121314151617181920
  1. <?xml version="1.0"?>
  2. <phpunit
  3. bootstrap="tests/bootstrap.php"
  4. backupGlobals="false"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. >
  10. <testsuites>
  11. <testsuite name="integration">
  12. <directory suffix="Test.php">./tests/integration/</directory>
  13. </testsuite>
  14. </testsuites>
  15. <php>
  16. <env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/wp-config.php" />
  17. </php>
  18. </phpunit>