Skip to content

Commit

Permalink
style(spotless): applied misc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shinybrar committed Nov 6, 2024
1 parent 2a52365 commit 4eafb62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion skaha/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ spotless {
indentWithSpaces(4)
endWithNewline()
}
}
}
6 changes: 3 additions & 3 deletions skaha/opencadc.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -30,15 +30,15 @@ task intTest(type: Test) {
// set the configuration context
testClassesDirs = sourceSets.intTest.output.classesDirs
classpath = sourceSets.intTest.runtimeClasspath

// run the tests always
outputs.upToDateWhen { false }
}

test {
testLogging {
events "PASSED", "FAILED", "SKIPPED"
// "STARTED",
// "STARTED",
}
}

Expand Down

0 comments on commit 4eafb62

Please sign in to comment.