Skip to content

Commit

Permalink
AUT-3691: Add a finalizedBy configuration to the test task this allow…
Browse files Browse the repository at this point in the history
…s the NotifyCallbackHandlerIntegrationTest to run successfully as part of the build.
  • Loading branch information
andrew-moores committed Dec 20, 2024
1 parent 03c0ab5 commit 4d7cd9d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions delivery-receipts-integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,15 @@ test {

doLast {
tasks.getByName("jacocoTestReport").sourceDirectories.from(
project(":account-management-api").sourceSets.main.java,
project(":delivery-receipts-api").sourceSets.main.java,
project(":shared").sourceSets.main.java)

tasks.getByName("jacocoTestReport").classDirectories.from(
project(":account-management-api").sourceSets.main.output,
project(":delivery-receipts-api").sourceSets.main.output,
project(":shared").sourceSets.main.output)
}
dependsOn ":composeUp"
finalizedBy ":composeDown"
}

jacocoTestReport {
Expand Down

0 comments on commit 4d7cd9d

Please sign in to comment.