Updated phpunit.xml

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2021-12-02 11:44:32 -08:00
parent 406211d2fe
commit 44b6907919

View file

@ -1,30 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="bootstrap/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
backupStaticAttributes="false" <coverage>
bootstrap="bootstrap/autoload.php" <include>
colors="true" <directory suffix=".php">app/</directory>
convertErrorsToExceptions="true" </include>
convertNoticesToExceptions="true" </coverage>
convertWarningsToExceptions="true" <testsuites>
processIsolation="false" <testsuite name="Application Test Suite">
stopOnFailure="false"> <directory>./tests/</directory>
<testsuites> </testsuite>
<testsuite name="Application Test Suite"> </testsuites>
<directory>./tests/</directory> <php>
</testsuite> <env name="APP_ENV" value="testing-ci"/>
</testsuites> <env name="CACHE_DRIVER" value="array"/>
<filter> <env name="SESSION_DRIVER" value="array"/>
<whitelist> <env name="QUEUE_DRIVER" value="sync"/>
<directory suffix=".php">app/</directory> <env name="DB_CONNECTION" value="sqlite"/>
</whitelist> <server name="SERVER_NAME" value="http://127.0.0.1:8000"/>
</filter> <ini name="display_errors" value="true"/>
<php> </php>
<env name="APP_ENV" value="testing-ci"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="DB_CONNECTION" value="sqlite" />
<server name="SERVER_NAME" value="http://127.0.0.1:8000"/>
<ini name="display_errors" value="true"/>
</php>
</phpunit> </phpunit>