-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathphpunit.xml
More file actions
49 lines (46 loc) · 1.94 KB
/
Copy pathphpunit.xml
File metadata and controls
49 lines (46 loc) · 1.94 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_KEY" value="base64:75tigY7b8XBh7IrVK5mnFhdSha7v9LhK6gdFyHxfABs="/>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="BEANSTALK_DRIVER" value="sync"/>
<env name="DATABASE_DRIVER" value="testing"/>
<!-- <env name="DATABASE_DRIVER" value="testing_real_mysql"/> -->
<env name="QUEUE_DRIVER" value="sync"/>
<env name="BITCOIN_MASTER_KEY" value="testingfoo123"/>
<env name="XCALLER_QUEUE_CONNECTION" value="sync"/>
<env name="COPAY_QUEUE_CONNECTION" value="sync"/>
<env name="BITCOINFEES_URL" value="none"/>
<env name="DEFAULT_BITCOIN_FEE" value="0.0001"/>
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
<exclude>
<directory>./build</directory>
<!-- exclude compiled files -->
<file>./app/Providers/AppServiceProvider.php</file>
<file>./app/Providers/BusServiceProvider.php</file>
<file>./app/Providers/ConfigServiceProvider.php</file>
<file>./app/Providers/EventServiceProvider.php</file>
<file>./app/Providers/RouteServiceProvider.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>