-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml
35 lines (35 loc) · 1.74 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
<?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" colors="true" failOnDeprecation="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Modules">
<directory suffix="Test.php">./app-modules/*/tests</directory>
</testsuite>
</testsuites>
<php>
<server name="APP_ENV" value="testing"/>
<server name="LANDLORD_APP_URL" value="http://aidingapp.local"/>
<server name="APP_URL" value="http://test.aidingapp.local"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="MAIL_MAILER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="AUDIT_QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="TELESCOPE_ENABLED" value="false"/>
<env name="DB_DATABASE" value="testing_landlord"/>
<env name="TENANT_DB_HOST" value="aidingapp-pgsql"/>
<env name="TENANT_DB_PORT" value="5432"/>
<env name="TENANT_DB_DATABASE" value="testing_tenant"/>
<env name="TENANT_DB_USERNAME" value="aidingapp"/>
<env name="TENANT_DB_PASSWORD" value="password"/>
<env name="AZURE_OPEN_AI_ENABLE_TEST_MODE" value="true"/>
<env name="SCOUT_DRIVER" value="database"/>
<env name="TWILIO_ENABLE_TEST_SENDER" value="true"/>
</php>
</phpunit>