mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
|
|
<testsuites>
|
|
<testsuite name="Install">
|
|
<directory suffix="Test.php">tests/Install</directory>
|
|
</testsuite>
|
|
<testsuite name="Unit">
|
|
<directory suffix="Test.php">tests/Unit</directory>
|
|
</testsuite>
|
|
<testsuite name="Feature">
|
|
<directory suffix="Test.php">tests/Feature</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<env name="APP_ENV" value="testing"/>
|
|
<env name="DB_CONNECTION" value="testing" force="true"/>
|
|
<env name="DB_DATABASE" value=":memory:" force="true"/>
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
|
<env name="CACHE_STORE" value="array"/>
|
|
<env name="SESSION_DRIVER" value="array"/>
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
|
<env name="API_ASYNC_AUDIT" value="false"/>
|
|
<env name="MAIL_MAILER" value="array"/>
|
|
</php>
|
|
<logging/>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">Blacklight</directory>
|
|
<directory suffix=".php">app</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|