Skip to content

Commit

Permalink
[test] don't run bats tests for suse boxes (#31749)
Browse files Browse the repository at this point in the history
These are temporarily not run as part of the packagingTest task but can
still be run by running the task directly
  • Loading branch information
andyb-elastic committed Jul 3, 2018
1 parent 3c7a01f commit b72bc8d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,11 @@ class VagrantTestPlugin implements Plugin<Project> {
project.gradle.removeListener(packagingReproListener)
}
if (project.extensions.esvagrant.boxes.contains(box)) {
packagingTest.dependsOn(packaging)
// these tests are temporarily disabled for suse boxes while we debug an issue
// https://github.com/elastic/elasticsearch/issues/30295
if (box.equals("opensuse-42") == false && box.equals("sles-12") == false) {
packagingTest.dependsOn(packaging)
}
}

Task platform = project.tasks.create("vagrant${boxTask}#platformTest", VagrantCommandTask) {
Expand Down

0 comments on commit b72bc8d

Please sign in to comment.