-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathphpunit.xml
executable file
·43 lines (43 loc) · 1.52 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
41
42
43
<?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"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
>
<coverage/>
<testsuites>
<testsuite name="Console">
<directory suffix="Test.php">./tests/Console</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<php>
<ini name="memory_limit" value="-1"/>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="MAIL_DRIVER" value="array"/>
<env name="MAIL_USERNAME" value="[email protected]"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="DB_CONNECTION" value="mysql"/>
<env name="DB_DATABASE" value="flare_test"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="BROADCAST_DRIVER" value="log"/>
<env name="TIME_ZONE" value="America/Edmonton"/>
</php>
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
<exclude>
<directory suffix=".php">./app/Flare/MapGenerator</directory>
<directory suffix=".php">./app/Admin/Import</directory>
<directory suffix=".php">./app/Admin/Exports</directory>
</exclude>
</source>
</phpunit>