Skip to content

Commit 6b4eaa7

Browse files
committed
Call junitreport in test target.
1 parent f347511 commit 6b4eaa7

File tree

3 files changed

+614
-0
lines changed

3 files changed

+614
-0
lines changed

build.xml

+7
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,13 @@
181181
</classfileset>
182182
<jvmarg value="-Xmx1G"/>
183183
</testng>
184+
<junitreport todir="${dist}/test" >
185+
<fileset dir="${test.output}">
186+
<include name="*.xml"/>
187+
</fileset>
188+
<report format="noframes" todir="${dist}/test" styledir="etc/test"/>
189+
</junitreport>
190+
<copy file="etc/test/testng.css" todir="${dist}/test" overwrite="true"/>
184191
<fail if="tests.failed" message="There were failed unit tests"/>
185192
</target>
186193

0 commit comments

Comments
 (0)