Changeset 35443 in osm for applications/editors
- Timestamp:
- 2020-05-14T13:38:51+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r35413 r35443 543 543 <available file="${plugin.test.dir}" type="dir" property="test.present"/> 544 544 </target> 545 <target name="test-init" depends="check-test" if="test.present" >545 <target name="test-init" depends="check-test" if="test.present" unless="skip-test"> 546 546 <mkdir dir="${plugin.test.dir}/build"/> 547 547 <mkdir dir="${plugin.test.dir}/build/unit"/> … … 582 582 <delete dir="../00_core_test_config/unit-josm.home/cache" failonerror="false"/> 583 583 </target> 584 <target name="test-compile" depends="test-init,dist" if="test.present" >584 <target name="test-compile" depends="test-init,dist" if="test.present" unless="skip-test"> 585 585 <sequential> 586 586 <javac debug="on" includeantruntime="false" srcdir="${plugin.test.dir}/unit" destdir="${plugin.test.dir}/build/unit" encoding="UTF-8" … … 595 595 </sequential> 596 596 </target> 597 <target name="test" depends="dist, test-clean, test-compile" if="test.present" 597 <target name="test" depends="dist, test-clean, test-compile" if="test.present" unless="skip-test" 598 598 description="Run unit tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password"> 599 599 <ivy:retrieve file="${josm.ivy}" pattern="../00_core_tools/[conf].[ext]" conf="jacocoant"/>
Note:
See TracChangeset
for help on using the changeset viewer.