Skip to content

Commit

Permalink
Avoid spinning up test fixtures during compilation (#71571)
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Apr 12, 2021
1 parent 8de0903 commit b4dbb4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x-pack/qa/saml-idp-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ def setupPorts = tasks.register("setupPorts") {
}
}

project.sourceSets.test.output.dir(outputDir, builtBy: [copyIdpFiles, setupPorts])
project.sourceSets.test.output.dir(outputDir, builtBy: [copyIdpFiles])

tasks.named("integTest").configure {
dependsOn setupPorts
onlyIf { idpFixtureProject.postProcessFixture.state.skipped == false && Architecture.current() == Architecture.X64 }
}

Expand Down

0 comments on commit b4dbb4d

Please sign in to comment.