-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
46 lines (44 loc) · 1.53 KB
/
phpunit.xml.dist
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
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
>
<php>
<ini name="memory_limit" value="-1"/>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="BROADCAST_DRIVER" value="log"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="DB_CONNECTION" value="mysql"/>
<env name="DB_DATABASE" value="test"/>
<env name="DB_USERNAME" value="travis"/>
<env name="DB_PASSWORD" value=""/>
<env name="MAIL_DRIVER" value="log"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
</php>
<!-- Add any additional test suites you want to run here -->
<testsuites>
<testsuite name="tests">
<directory>tests</directory>
<exclude>tests/Benchmarks</exclude>
</testsuite>
<testsuite name="benchmarks">
<directory>tests/Benchmarks</directory>
</testsuite>
</testsuites>
<!-- Ignore vendor tests in code coverage reports -->
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>