Skip to content

Commit 8b9adeb

Browse files
committed
Added target for junit-style output of testng test output.
1 parent 605b8fa commit 8b9adeb

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,17 @@
208208

209209
</target>
210210

211+
<target name="junit-reports" depends="test">
212+
<junitreport todir="${testdir}">
213+
<fileset dir="${testdir}">
214+
<include name="*/*.xml"/>
215+
</fileset>
216+
217+
<report format="noframes" todir="${testdir}"/>
218+
</junitreport>
219+
</target>
220+
221+
211222

212223
<target name="publish">
213224
<exec dir="." executable="python">

0 commit comments

Comments
 (0)