Skip to content

Commit

Permalink
Remove unnecessary test task dependency (#76938) (#76939)
Browse files Browse the repository at this point in the history
We auto-wire the bwcTestSnapshots task to the check task. This dependOn
means we run the full wire compatible test suite on every build which
is not what we want since we run those explicitly in parallel CI jobs.
Running check should only test unreleased versions.

Co-authored-by: Elastic Machine <[email protected]>

Co-authored-by: Elastic Machine <[email protected]>
  • Loading branch information
mark-vieira and elasticmachine authored Aug 25, 2021
1 parent dbf0156 commit 4dc060c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions x-pack/plugin/sql/qa/mixed-node/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,4 @@ for (Version bwcVersion : BuildParams.bwcVersions.wireCompatible.findAll { it.on
tasks.register(bwcTaskName(bwcVersion)) {
dependsOn "${baseName}#mixedClusterTest"
}

// run these bwc tests as part of the "check" task
tasks.named("check").configure {
dependsOn "${baseName}#mixedClusterTest"
}
}

0 comments on commit 4dc060c

Please sign in to comment.