-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
41 lines (40 loc) · 1.4 KB
/
phpunit.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
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
stopOnError="false"
stderr="true"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<coverage/>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">app/src</directory>
</include>
</source>
<php>
<env name="DB_DATABASE" value="tests"/>
<env name="CYCLE_SCHEMA_CACHE" value="true"/>
<env name="DB_LOG_QUERY_PARAMETERS" value="true"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="CACHE_STORAGE" value="local"/>
<env name="APP_ENV" value="testing"/>
<env name="TELEMETRY_DRIVER" value="null"/>
<env name="TOKENIZER_CACHE_TARGETS" value="true"/>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="-1"/>
</php>
</phpunit>