mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
922 B
XML
26 lines
922 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
|
colors="true"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
cacheDirectory=".phpunit.cache"
|
|
backupStaticProperties="false">
|
|
<testsuites>
|
|
<testsuite name="Laravel Test Suite">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<env name="APP_ENV" value="testing" />
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
<env name="SESSION_DRIVER" value="array"/>
|
|
<env name="QUEUE_DRIVER" value="sync"/>
|
|
<env name="MAIL_DRIVER" value="array"/>
|
|
<ini name="date.timezone" value="UTC" />
|
|
<ini name="intl.default_locale" value="C.UTF-8" />
|
|
<ini name="memory_limit" value="2048M" />
|
|
</php>
|
|
</phpunit>
|