-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.pgsql.xml
More file actions
37 lines (37 loc) · 1.98 KB
/
phpunit.pgsql.xml
File metadata and controls
37 lines (37 loc) · 1.98 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="Resrv">
<directory suffix="Test.php">tests/Affiliate/</directory>
<directory suffix="Test.php">tests/Availability/</directory>
<directory suffix="Test.php">tests/AdvancedAvailability/</directory>
<directory suffix="Test.php">tests/Extra/</directory>
<directory suffix="Test.php">tests/Option/</directory>
<directory suffix="Test.php">tests/Livewire/</directory>
<directory suffix="Test.php">tests/Reservation/</directory>
<directory suffix="Test.php">tests/FixedPricing/</directory>
<directory suffix="Test.php">tests/DynamicPricing/</directory>
<directory suffix="Test.php">tests/Reports/</directory>
<directory suffix="Test.php">tests/DataImport/</directory>
<directory suffix="Test.php">tests/Utilities/</directory>
<directory suffix="Test.php">tests/Unit/</directory>
<directory suffix="Test.php">tests/Multisite/</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
<env name="APP_KEY" value="base64:tIt56v64/nM+5fAClHWccPRxbhvdgeRsiYDHyqXh37Y="/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="DB_CONNECTION" value="pgsql"/>
<env name="DB_HOST" value="127.0.0.1"/>
<env name="DB_PORT" value="5432"/>
<env name="DB_DATABASE" value="resrv_test"/>
<env name="DB_USERNAME" value="postgres"/>
<env name="DB_PASSWORD" value=""/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="MAIL_MAILER" value="array"/>
<ini name="memory_limit" value="1024M"/>
</php>
</phpunit>