JAL-3235 -Dtestng-verbosity=10 to trace execution of TestNG tests Jalview-JS/jim/JAL-3253-JAL-3418
authorJim Procter <jprocter@issues.jalview.org>
Wed, 21 Aug 2019 09:15:38 +0000 (10:15 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Wed, 21 Aug 2019 09:15:38 +0000 (10:15 +0100)
build.xml

index bbd8889..6154cca 100755 (executable)
--- a/build.xml
+++ b/build.xml
 
     <!-- default TestNG groups to run -->
     <property name="testng-groups" value="Functional" />
+    <!-- default verbosity for TestNG -->
+    <property name="testng-verbosity" value="2"/>
     <!-- Java 9 JVM args -->
     <condition property="java9">
       <equals arg1="${ant.java.version}" arg2="9"/>
 
   <target name="testng" depends="buildTests">
     <testng outputDir="${reportDir}" haltOnFailure="false" groups="${testng-groups}" mode="testng"
-      verbose="10">
+      verbose="${testng-verbosity}">
       <classpath>
         <pathelement location="${testOutputDir}" />
         <pathelement location="${clover.jar}" if:set="clover.jar"/>