Created
December 3, 2022 16:33
-
-
Save benjamincrozat/319705ebc72675f3b4c3af33b0eedd48 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | |
bootstrap="vendor/autoload.php" | |
colors="true" | |
executionOrder="random" | |
> | |
<testsuites> | |
<testsuite name="Tests"> | |
<directory suffix="Test.php">app</directory> | |
</testsuite> | |
</testsuites> | |
<coverage processUncoveredFiles="true"> | |
<include> | |
<directory suffix=".php">app</directory> | |
</include> | |
<exclude> | |
<directory suffix="Test.php">app</directory> | |
</exclude> | |
</coverage> | |
<php> | |
<env name="APP_ENV" value="testing"/> | |
<env name="BCRYPT_ROUNDS" value="4"/> | |
<env name="CACHE_DRIVER" value="array"/> | |
<!-- <env name="DB_CONNECTION" value="sqlite"/> | |
<env name="DB_DATABASE" value=":memory:"/> --> | |
<env name="MAIL_MAILER" value="array"/> | |
<env name="QUEUE_CONNECTION" value="sync"/> | |
<env name="SCOUT_DRIVER" value="null"/> | |
<env name="SESSION_DRIVER" value="array"/> | |
<env name="TELESCOPE_ENABLED" value="false"/> | |
</php> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment