-
Notifications
You must be signed in to change notification settings - Fork 122
/
phpunit.xml.dist
35 lines (30 loc) · 997 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="Spika Test Suite">
<directory>./tests/Spika/</directory>
</testsuite>
</testsuites>
<php>
<includePath>./</includePath>
<includePath>./vendor/phpunit/phpunit/</includePath>
<env name="SPIKA_COUCH_DB_URL" value="http://localhost:5984/spikatest"/>
<env name="SPIKA_ADMIN_EMAIL" value="[email protected]"/>
<env name="SPIKA_ENABLE_LOGGING" value="false"/>
</php>
<filter>
<blacklist>
<directory suffix=".php">./vendor</directory>
</blacklist>
</filter>
</phpunit>