-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit-ci.xml
executable file
·33 lines (33 loc) · 1.45 KB
/
phpunit-ci.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Test Suite - Unit">
<directory suffix="Test.php">./tests/Unit/</directory>
</testsuite>
<testsuite name="Test Suite - Feature">
<directory suffix="Test.php">./tests/Feature/</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_KEY" value="base64:cE+/JHPKHcMoPrMBo3tpPT9igJ2tLFaVGe5A2WAzsvg=" />
<env name="APP_ENV" value="testing" />
<env name="CACHE_DRIVER" value="array" />
<env name="LOG_CHANNEL" value="null"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="APP_STORAGE_PATH" value="/tmp/storage"/>
<env name="APP_SERVICES_CACHE" value="/tmp/bootstrap/cache/services.php"/>
<env name="APP_PACKAGES_CACHE" value="/tmp/bootstrap/cache/packages.php"/>
<env name="APP_CONFIG_CACHE" value="/tmp/bootstrap/cache/config.php"/>
<env name="APP_ROUTES_CACHE" value="/tmp/bootstrap/cache/routes.php"/>
<env name="APP_EVENTS_CACHE" value="/tmp/bootstrap/cache/events.php"/>
</php>
</phpunit>