forked from codeaudit/opendialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit-ci.xml
executable file
·43 lines (42 loc) · 1.68 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
34
35
36
37
38
39
40
41
42
43
<?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="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="MAIL_DRIVER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="DB_CONNECTION" value="testbench"/>
<env name="DB_DATABASE" value=":memory:"/>
<env name="DGRAPH_URL" value="http://localhost"/>
<env name="DGRAPH_AUTH_TOKEN" value="circlecidgraphauthtoken"/>
<env name="DGRAPH_PORT" value="8080"/>
<env name="STATS_CACHE_LENGTH" value="0"/>
<env name="LUIS_APP_URL" value="luis_example_url"/>
<env name="LUIS_APP_ID" value="luis_example_id"/>
<env name="LUIS_SUBSCRIPTION_KEY" value="luis_example_sub_key"/>
<env name="ALLOW_FULLPAGE_WEBCHAT" value="false"/>
</php>
</phpunit>