Skip to content

Commit e346450

Browse files
author
Sandy Pleyte
committed
Fixed phpunit
1 parent 781a37e commit e346450

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,5 @@ in parallel using a maximum of 2 threads. -->
9898
</target>
9999

100100
<!--<target name="build" depends="clean,parallelTasks,phpunit,phpcb" />-->
101-
<target name="build" depends="clean,parallelTasks" />
101+
<target name="build" depends="clean,parallelTasks,phpunit" />
102102
</project>

phpunit.xml.dist

+12
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,16 @@
1212
<directory suffix=".php">src/DbPatch</directory>
1313
</whitelist>
1414
</filter>
15+
<logging>
16+
<log type="coverage-html"
17+
title="DbPatch"
18+
target="build/coverage"
19+
charset="UTF-8"
20+
yui="true"
21+
highlight="false"
22+
lowUpperBound="35"
23+
highLowerBound="70" />
24+
<log type="coverage-clover" target="build/logs/clover.xml" />
25+
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false" />
26+
</logging>
1527
</phpunit>

0 commit comments

Comments
 (0)