forked from lunarphp/lunar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
40 lines (40 loc) · 1.78 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
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false"
colors="true" processIsolation="false" stopOnFailure="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
<coverage/>
<testsuites>
<testsuite name="admin">
<directory suffix="Test.php">tests/admin/Feature</directory>
<directory suffix="Test.php">tests/admin/Unit</directory>
</testsuite>
<testsuite name="core">
<directory suffix="Test.php">tests/core/Database</directory>
<directory suffix="Test.php">tests/core/Feature</directory>
<directory suffix="Test.php">tests/core/Unit</directory>
</testsuite>
<testsuite name="opayo">
<directory suffix="Test.php">tests/opayo/Unit</directory>
<directory suffix="Test.php">tests/opayo/Feature</directory>
</testsuite>
<testsuite name="stripe">
<directory suffix="Test.php">tests/stripe/Unit</directory>
</testsuite>
<testsuite name="shipping">
<directory suffix="Test.php">tests/shipping/Feature</directory>
<directory suffix="Test.php">tests/shipping/Unit</directory>
</testsuite>
</testsuites>
<php>
<env name="DB_CONNECTION" value="testing"/>
<env name="APP_KEY" value="base64:2fl+Ktvkfl+Fuz4Qp/A75G2RTiWVA/ZoKZvp6fiiM10="/>
<env name="APP_ENV" value="testing"/>
<env name="MAIL_MAILER" value="log"/>
</php>
<source>
<include>
<directory suffix=".php">./packages/**/src</directory>
</include>
</source>
</phpunit>