Merge pull request #1691 from SiboVG/unstable

Add no-junit-report unit test targets in root
This commit is contained in:
Sibo Van Gool 2022-09-23 19:51:12 +02:00 committed by GitHub
commit fef90fdb34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,12 +45,23 @@
<target name="unittest" depends="unittest-core, unittest-swing">
</target>
<target name="unittest-no-junit-report" depends="unittest-core, unittest-swing">
</target>
<target name="unittest-core" depends="jar-core">
<ant dir="core" target="unittest" inheritAll="false" />
</target>
<target name="unittest-core-no-junit-report" depends="jar-core">
<ant dir="core" target="unittest" inheritAll="false" />
</target>
<target name="unittest-swing" depends="jar-swing">
<ant dir="swing" target="unittest" inheritAll="false" />
<ant dir="swing" target="unittest-no-junit-report" inheritAll="false" />
</target>
<target name="unittest-swing-no-junit-report" depends="jar-swing">
<ant dir="swing" target="unittest-no-junit-report" inheritAll="false" />
</target>
<!-- CHECK -->