phpunit.travis.xml 907 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="../Doctrine/Tests/TestInit.php"
  3. convertWarningsToExceptions="true"
  4. convertNoticesToExceptions="true"
  5. convertErrorsToExceptions="true"
  6. backupStaticAttributes="false"
  7. processIsolation="false"
  8. stopOnFailure="false"
  9. backupGlobals="false"
  10. syntaxCheck="false"
  11. colors="true">
  12. <logging>
  13. <log type="coverage-clover" target="../../build/logs/clover.xml"/>
  14. </logging>
  15. <testsuites>
  16. <testsuite name="Doctrine Cache Test Suite">
  17. <directory>../Doctrine/</directory>
  18. </testsuite>
  19. </testsuites>
  20. <filter>
  21. <whitelist>
  22. <directory>../../lib/Doctrine/</directory>
  23. </whitelist>
  24. </filter>
  25. <groups>
  26. <exclude>
  27. <group>performance</group>
  28. </exclude>
  29. </groups>
  30. </phpunit>