phpunit.xml 828 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="./vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
  3. <coverage processUncoveredFiles="true">
  4. <include>
  5. <directory>src/GO</directory>
  6. </include>
  7. <report>
  8. <clover outputFile="clover.xml"/>
  9. </report>
  10. </coverage>
  11. <testsuites>
  12. <testsuite name="Scheduler Test Suite">
  13. <directory>./tests/</directory>
  14. </testsuite>
  15. </testsuites>
  16. <php>
  17. <env name="APP_ENV" value="testing"/>
  18. </php>
  19. <logging/>
  20. </phpunit>