-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathphpunit.pgsql.xml
More file actions
executable file
·28 lines (28 loc) · 872 Bytes
/
phpunit.pgsql.xml
File metadata and controls
executable file
·28 lines (28 loc) · 872 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="true"
>
<testsuites>
<testsuite name="Tests">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
<source>
<include>
<directory>packages/admin/src</directory>
<directory>packages/core/src</directory>
</include>
</source>
<php>
<ini name="memory_limit" value="-1"/>
<env name="APP_ENV" value="self-testing"/>
<env name="APP_KEY" value="base64:yk+bUVuZa1p86Dqjk9OjVK2R1pm6XHxC6xEKFq8utH0="/>
<env name="DB_CONNECTION" value="pgsql"/>
</php>
</phpunit>