Migrate config

This commit is contained in:
Lance Pioch 2024-03-23 12:32:10 -04:00
parent 675c289780
commit 08d98581aa

View File

@ -1,32 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="bootstrap/tests.php" colors="true">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <testsuites>
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" <testsuite name="Integration">
bootstrap="bootstrap/tests.php" <directory>./tests/Integration</directory>
colors="true" </testsuite>
> <testsuite name="Unit">
<coverage> <directory>./tests/Unit</directory>
<include> </testsuite>
<directory suffix=".php">./app</directory> </testsuites>
</include> <php>
</coverage> <env name="APP_ENV" value="testing"/>
<testsuites> <env name="BCRYPT_ROUNDS" value="4"/>
<testsuite name="Integration"> <env name="DB_DATABASE" value="testing"/>
<directory>./tests/Integration</directory> <env name="CACHE_STORE" value="array"/>
</testsuite> <env name="GUZZLE_CONNECT_TIMEOUT" value="1"/>
<testsuite name="Unit"> <env name="MAIL_MAILER" value="array"/>
<directory>./tests/Unit</directory> <env name="SESSION_DRIVER" value="array"/>
</testsuite> <env name="QUEUE_CONNECTION" value="sync"/>
</testsuites> <env name="MAIL_DRIVER" value="array"/>
<php> </php>
<env name="APP_ENV" value="testing" /> <source>
<env name="BCRYPT_ROUNDS" value="4" /> <include>
<env name="DB_DATABASE" value="testing" /> <directory suffix=".php">./app</directory>
<env name="CACHE_STORE" value="array" /> </include>
<env name="GUZZLE_CONNECT_TIMEOUT" value="1" /> </source>
<env name="MAIL_MAILER" value="array" />
<env name="SESSION_DRIVER" value="array" />
<env name="QUEUE_CONNECTION" value="sync" />
<env name="MAIL_DRIVER" value="array" />
</php>
</phpunit> </phpunit>