mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Removed test from the build / run targets but left in for dist.
Refactored ant build chain to allow building / running without execution of tests but ensure tests are run during dist. Note that tests are still runnable under the test target itself. Resolves #8.
This commit is contained in:
+2
-2
@@ -124,7 +124,7 @@
|
||||
<compilecommon srcdir="src; test/processing" destdir="bin-test" classpath="classpath.test" />
|
||||
</target>
|
||||
|
||||
<target name="test" depends="test-compile">
|
||||
<target name="test" depends="build, test-compile">
|
||||
<junit haltonfailure="true">
|
||||
<classpath refid="classpath.test" />
|
||||
<formatter type="brief" usefile="false" />
|
||||
@@ -137,7 +137,7 @@
|
||||
</junit>
|
||||
</target>
|
||||
|
||||
<target name="compile" depends="test" description="Compile sources">
|
||||
<target name="compile" description="Compile sources" depends="preproc">
|
||||
<compilecommon srcdir="src" destdir="bin" classpath="classpath.base" />
|
||||
</target>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user