migrate configuration

This commit is contained in:
2023-07-18 19:34:03 +10:00
parent daeecfbd4f
commit 326c8e7b81

View File

@@ -1,33 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" <testsuites>
bootstrap="vendor/autoload.php" <testsuite name="Unit">
colors="true" <directory suffix="Test.php">./tests/Unit</directory>
> </testsuite>
<testsuites> <testsuite name="Feature">
<testsuite name="Unit"> <directory suffix="Test.php">./tests/Feature</directory>
<directory suffix="Test.php">./tests/Unit</directory> </testsuite>
</testsuite> </testsuites>
<testsuite name="Feature"> <coverage/>
<directory suffix="Test.php">./tests/Feature</directory> <php>
</testsuite> <env name="APP_ENV" value="testing"/>
</testsuites> <env name="APP_DEBUG" value="true"/>
<coverage processUncoveredFiles="true"> <env name="BCRYPT_ROUNDS" value="4"/>
<include> <env name="CACHE_DRIVER" value="array"/>
<directory suffix=".php">./app</directory> <env name="DB_CONNECTION" value="sqlite"/>
</include> <env name="DB_DATABASE" value=":memory:"/>
</coverage> <env name="MAIL_MAILER" value="array"/>
<php> <env name="QUEUE_CONNECTION" value="sync"/>
<env name="APP_ENV" value="testing"/> <env name="SESSION_DRIVER" value="array"/>
<env name="APP_DEBUG" value="true"/> <env name="TELESCOPE_ENABLED" value="false"/>
<env name="BCRYPT_ROUNDS" value="4"/> <env name="FAKER_PROVIDER_PATH" value="./faker/provider/CustomInternetProvider.php"/>
<env name="CACHE_DRIVER" value="array"/> </php>
<env name="DB_CONNECTION" value="sqlite"/> <source>
<env name="DB_DATABASE" value=":memory:"/> <include>
<env name="MAIL_MAILER" value="array"/> <directory suffix=".php">./app</directory>
<env name="QUEUE_CONNECTION" value="sync"/> </include>
<env name="SESSION_DRIVER" value="array"/> </source>
<env name="TELESCOPE_ENABLED" value="false"/>
<env name="FAKER_PROVIDER_PATH" value="./faker/provider/CustomInternetProvider.php"/>
</php>
</phpunit> </phpunit>