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 authored Jul 3, 2018
1 parent 439e67f commit 7bb8a0e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,11 @@ class VagrantTestPlugin implements Plugin<Project> {
project.gradle.removeListener(batsPackagingReproListener)
}
if (project.extensions.esvagrant.boxes.contains(box)) {
packagingTest.dependsOn(batsPackagingTest)
// 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(batsPackagingTest)
}
}
}

Expand Down

0 comments on commit 7bb8a0e

Please sign in to comment.