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 04cd704 commit a4d9d33
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,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)
}
}

// This task doesn't do anything yet. In the future it will execute a jar containing tests on the vm
Expand Down

0 comments on commit a4d9d33

Please sign in to comment.