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 Mar 28, 2024
1 parent 48963eb commit a869102
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 @@ -123,6 +123,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 @@ -153,6 +156,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 a869102

Please sign in to comment.