-
Notifications
You must be signed in to change notification settings - Fork 39
/
phpunit.xml
32 lines (30 loc) · 1.13 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="All">
<directory suffix="Test.php">tests/</directory>
<directory suffix="Test.php">vendor/remp/beam-module/tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_KEY" value="base64:9jq4gfZZ/gJXsp2h2q325ZJwHf58QPrnaJo+6YnsCzY="/>
<env name="APP_ENV" value="testing"/>
<env name="DB_DATABASE" value="remp_test"/>
<env name="DB_PASSWORD" value="secret"/>
<env name="DB_HOST" value="mysql"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
</php>
</phpunit>