Skip to content

Commit

Permalink
WIP Ensure integration test runs after "check"
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Jan 27, 2024
1 parent 5c98c15 commit 0e26d8b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ integrationTestGradlePlugin.dependsOn(
':htmlSanityCheck-core:publishAllPublicationsToMyLocalRepositoryForFullIntegrationTestsRepository',
':htmlSanityCheck-gradle-plugin:publishAllPublicationsToMyLocalRepositoryForFullIntegrationTestsRepository'
)
integrationTestGradlePlugin.configure {
shouldRunAfter(':htmlSanityCheck-gradle-plugin:check')
}
tasks.register("cleanIntegrationTestGradlePlugin", Delete) {
group("Build")
description("Deletes the result directory from gradle-plugin integration tests")
Expand Down Expand Up @@ -145,6 +148,9 @@ tasks.register("integrationTestCli") {
integrationTestCli.dependsOn(
':htmlSanityCheck-cli:installDist'
)
integrationTestCli.configure {
shouldRunAfter (':htmlSanityCheck-cli:check')
}
tasks.register("cleanIntegrationTestCli", Delete) {
group("Build")
description("Deletes the result directory from CLI integration tests")
Expand Down

0 comments on commit 0e26d8b

Please sign in to comment.