Add junit output to console

This commit is contained in:
Flare Microsystems
2024-11-08 19:24:00 -08:00
parent 6c4b04dea6
commit 1ffd4fdbe6

View File

@@ -44,7 +44,7 @@
<target name="test" depends="compile_tests">
<junit printsummary="yes" haltonfailure="no" fork="yes">
<junit printsummary="yes" showoutput="true" haltonfailure="no" fork="yes">
<classpath>
<pathelement location="${build.dir}" /> <!-- compiled production classes -->
<pathelement location="${test.dir}" /> <!-- compiled test classes -->
@@ -56,7 +56,6 @@
</fileset>
</batchtest>
<formatter type="xml" />
<formatter type="plain" />
</junit>
</target>
</project>