phpunit.xml.dist 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
  4. backupGlobals="false"
  5. backupStaticAttributes="false"
  6. colors="true"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. strict="false"
  11. processIsolation="false"
  12. stopOnFailure="false"
  13. bootstrap="tests/bootstrap.php"
  14. >
  15. <php>
  16. <env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
  17. </php>
  18. <testsuites>
  19. <testsuite name="Composer Test Suite">
  20. <directory>./tests/Composer/</directory>
  21. </testsuite>
  22. </testsuites>
  23. <groups>
  24. <exclude>
  25. <group>slow</group>
  26. <group>legacy</group>
  27. </exclude>
  28. </groups>
  29. <filter>
  30. <whitelist>
  31. <directory>./src/Composer/</directory>
  32. <exclude>
  33. <file>./src/Composer/Autoload/ClassLoader.php</file>
  34. </exclude>
  35. </whitelist>
  36. </filter>
  37. </phpunit>