forked from propelorm/Propel2
-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml.dist
43 lines (38 loc) · 1.1 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="Propel2 Test Suite">
<directory>tests/Propel/Tests/</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>pgsql</group>
<group>mysql</group>
</exclude>
</groups>
<php>
<env name="DB" value="mysql"/> <!-- mysql, sqlite, pgsql -->
<env name="DB_USER" value=""/>
<env name="DB_PW" value=""/>
</php>
<logging>
<!--<log type="coverage-php" target="tests/clover.cov"/>-->
<!--<log type="coverage-html" target="tests/coverage-report" charset="UTF-8"
highlight="false" lowUpperBound="35" highLowerBound="70"/>-->
</logging>
<filter>
<whitelist>
<directory>src/Propel/</directory>
</whitelist>
</filter>
</phpunit>