diff --git a/skaha/build.gradle b/skaha/build.gradle index b7e695ed..075ecef3 100644 --- a/skaha/build.gradle +++ b/skaha/build.gradle @@ -74,4 +74,4 @@ spotless { indentWithSpaces(4) endWithNewline() } -} \ No newline at end of file +} diff --git a/skaha/opencadc.gradle b/skaha/opencadc.gradle index 6cc16522..57772675 100644 --- a/skaha/opencadc.gradle +++ b/skaha/opencadc.gradle @@ -20,7 +20,7 @@ tasks.withType(Test) { // reset the report destinations so that intTests go to their own page //reports.html.destination = file("${reporting.baseDir}/${name}") reports.html.destination = file(reporting.baseDir.getAbsolutePath() + '/' + name) - + // Assign all Java system properties from // the command line to the tests systemProperties System.properties @@ -30,7 +30,7 @@ task intTest(type: Test) { // set the configuration context testClassesDirs = sourceSets.intTest.output.classesDirs classpath = sourceSets.intTest.runtimeClasspath - + // run the tests always outputs.upToDateWhen { false } } @@ -38,7 +38,7 @@ task intTest(type: Test) { test { testLogging { events "PASSED", "FAILED", "SKIPPED" - // "STARTED", + // "STARTED", } }