-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
31 lines (31 loc) · 1.25 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
<?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"
cacheDirectory=".phpunit/result.cache"
executionOrder="random"
colors="true">
<testsuites>
<testsuite name="package">
<directory suffix="Test.php">./src</directory>
<directory suffix="Test.php">./docs</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
<directory suffix=".php">./docs</directory>
</include>
<exclude>
<directory suffix="Test.php">./src</directory>
<directory suffix="Test.php">./docs</directory>
</exclude>
</source>
<coverage cacheDirectory=".phpunit/coverage.cache"/>
<php>
<env verbatim="true" name="COLUMNS" value="120"/>
<env verbatim="true" name="APP_KEY" value="base64:p1DLhQxuhXUCcCJ/CIfo9xKR6zMgnNXDTVstMbkivEc="/>
<env verbatim="true" name="APP_DEBUG" value="true"/>
<env verbatim="true" name="DB_CONNECTION" value="sqlite"/>
<env verbatim="true" name="DB_DATABASE" value=":memory:"/>
</php>
</phpunit>