-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
17 lines (16 loc) · 832 Bytes
/
build.xml
File metadata and controls
17 lines (16 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<project name="dspacelabs/http-message" default="phpunit">
<target name="phpunit">
<exec executable="${project.basedir}/vendor/bin/phpunit" passthru="true" output="/dev/stdout" error="/dev/stderr" logoutput="/dev/stdout" level="debug" checkreturn="true">
<arg value="--verbose" />
</exec>
</target>
<target name="phpunit-coverage">
<mkdir dir="${project.basedir}/docs/coverage" />
<exec executable="${project.basedir}/vendor/bin/phpunit" passthru="true" output="/dev/stdout" error="/dev/stderr" logoutput="/dev/stdout" level="debug" checkreturn="true">
<arg value="--verbose" />
<arg value="--coverage-html" />
<arg path="${project.basedir}/docs/coverage" />
</exec>
</target>
</project>