File tree 2 files changed +11
-8
lines changed
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 63
63
<delete file =" ${ basedir } /build/logs/phpunit.xml" quiet =" true" />
64
64
65
65
<exec executable =" ${ phpunit } " failonerror =" true" >
66
- <arg line =' --configuration ${ basedir } /phpunit.xml.dist' />
67
- <arg line =' -d memory_limit=256M' />
68
- <arg line =' --log-junit "${ basedir } /build/logs/phpunit.xml"' />
66
+ <arg line =' --no-coverage' />
69
67
<arg line =' ${ colors-arg.color } ' />
70
68
</exec >
71
69
</target >
77
75
<mkdir dir =" ${ basedir } /build/coverage" />
78
76
79
77
<exec executable =" ${ phpunit } " failonerror =" true" >
80
- <arg line =' --configuration ${ basedir } /phpunit.xml.dist' />
81
- <arg line =' -d memory_limit=256M' />
82
- <arg line =' --log-junit "${ basedir } /build/logs/phpunit.xml"' />
83
- <arg line =' --coverage-clover "${ basedir } /build/logs/clover.xml"' />
84
- <arg line =' --coverage-html "${ basedir } /build/coverage/"' />
85
78
<arg line =' ${ colors-arg.color } ' />
86
79
</exec >
87
80
</target >
Original file line number Diff line number Diff line change 14
14
<directory suffix =" .php" >src</directory >
15
15
</whitelist >
16
16
</filter >
17
+
18
+ <logging >
19
+ <log type =" junit" target =" build/logs/phpunit.xml" />
20
+ <log type =" coverage-clover" target =" build/logs/clover.xml" />
21
+ <log type =" coverage-html" target =" build/coverage/" />
22
+ </logging >
23
+
24
+ <php >
25
+ <ini name =" memory_limit" value =" 256M" />
26
+ </php >
17
27
</phpunit >
You can’t perform that action at this time.
0 commit comments