-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
32 lines (32 loc) · 1.2 KB
/
Copy pathphpunit.xml
File metadata and controls
32 lines (32 loc) · 1.2 KB
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/3.7/phpunit.xsd"
cacheTokens="false"
bootstrap="../../../../../bootstrap/app.php"
colors="true"
verbose="true">
<logging>
<log type="coverage-html" target="../../../../../var/qa/phpunit_coverage"/>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-xml" target="../../../../../var/qa/phpunit_logs/coverage-xml"/>
<log type="junit" target="../../../../../var/qa/phpunit_logs/phpunit.junit.xml"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">../../../../../app</directory>
</whitelist>
</filter>
<logging>
<log type="junit" target="../../../../../var/qa/phpunit_logs/phpunit.junit.xml"/>
</logging>
<testsuites>
<testsuite name="tests">
<directory suffix="Test.php">../../../../../tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
</phpunit>