-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
63 lines (51 loc) · 2.13 KB
/
phpunit.xml
File metadata and controls
63 lines (51 loc) · 2.13 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">./tests/Integration</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="APP_ENV" value="testing"/>
<server name="LOG_CHANNEL" value="testing"/>
<server name="DB_HOST" value="mysql-testing"/>
<server name="DB_PORT" value="3306"/>
<server name="DB_DATABASE" value="helpyourselfsutton"/>
<server name="DB_USERNAME" value="helpyourselfsutton"/>
<server name="DB_PASSWORD" value="secret"/>
<server name="FILESYSTEM_CLOUD" value="testing_cloud"/>
<server name="SESSION_LIFETIME" value="20"/>
<server name="QUEUE_DRIVER" value="sync"/>
<server name="REDIS_CLUSTER" value="redis"/>
<server name="REDIS_SCHEME" value="tcp"/>
<server name="REDIS_HOST" value="redis-testing"/>
<server name="REDIS_PASSWORD" value="(null)"/>
<server name="REDIS_PORT" value="7000"/>
<server name="GEOCODE_DRIVER" value="stub"/>
<server name="EMAIL_DRIVER" value='"null"'/>
<server name="SMS_DRIVER" value='"null"'/>
<server name="SCOUT_ELASTIC_HOST" value="elasticsearch"/>
<server name="SCOUT_PREFIX" value="testing_"/>
<server name="OTP_ENABLED" value="(true)"/>
</php>
</phpunit>