You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
916 B

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="tests/bootstrap.php"
  3. colors="true"
  4. processIsolation="false"
  5. stopOnFailure="false">
  6. <testsuites>
  7. <testsuite name="Application Test Suite">
  8. <directory>./tests/</directory>
  9. </testsuite>
  10. </testsuites>
  11. <coverage>
  12. <include>
  13. <directory suffix=".php">app/</directory>
  14. </include>
  15. </coverage>
  16. <php>
  17. <env name="APP_ENV" value="testing"/>
  18. <env name="APP_KEY" value="CompassPhp8LocalSmokeTestKey1234"/>
  19. <env name="BASE_URL" value="http://localhost/"/>
  20. <env name="ALLOW_NEW_USERS" value="false"/>
  21. <env name="STORAGE_DIR" value="/tmp/compass-test-storage/"/>
  22. <env name="CACHE_DRIVER" value="array"/>
  23. <env name="SESSION_DRIVER" value="array"/>
  24. <env name="QUEUE_DRIVER" value="sync"/>
  25. </php>
  26. </phpunit>