mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
And phpunit with html coverage to ant
Launching `ant phpunit` will now generate HTML Coverage
This commit is contained in:
parent
164bd80118
commit
276a1e9d3f
1 changed files with 7 additions and 0 deletions
|
@ -40,4 +40,11 @@
|
|||
<arg value="--env=test"/>
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
<target name="phpunit" description="Run unit tests with PHPUnit + HTML Coverage">
|
||||
<exec executable="phpunit" failonerror="true">
|
||||
<arg value="--coverage-html"/>
|
||||
<arg value="build/coverage"/>
|
||||
</exec>
|
||||
</target>
|
||||
</project>
|
||||
|
|
Loading…
Reference in a new issue