phpunit.xml.dist 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. beStrictAboutTestsThatDoNotTestAnything="false"
  5. colors="true"
  6. convertDeprecationsToExceptions="true"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. printerClass="Illuminate\Tests\IgnoreSkippedPrinter"
  11. processIsolation="false"
  12. stopOnError="false"
  13. stopOnFailure="false"
  14. verbose="true"
  15. >
  16. <testsuites>
  17. <testsuite name="Laravel Test Suite">
  18. <directory suffix="Test.php">./tests</directory>
  19. </testsuite>
  20. </testsuites>
  21. <php>
  22. <ini name="date.timezone" value="UTC" />
  23. <ini name="intl.default_locale" value="C.UTF-8" />
  24. <ini name="memory_limit" value="2048M" />
  25. <env name="DB_CONNECTION" value="testing" />
  26. <!--
  27. <env name="REDIS_HOST" value="127.0.0.1" />
  28. <env name="REDIS_PORT" value="6379" />
  29. -->
  30. </php>
  31. </phpunit>