We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 439e67f commit 7bb8a0eCopy full SHA for 7bb8a0e
buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy
@@ -526,7 +526,11 @@ class VagrantTestPlugin implements Plugin<Project> {
526
project.gradle.removeListener(batsPackagingReproListener)
527
}
528
if (project.extensions.esvagrant.boxes.contains(box)) {
529
- packagingTest.dependsOn(batsPackagingTest)
+ // these tests are temporarily disabled for suse boxes while we debug an issue
530
+ // https://github.com/elastic/elasticsearch/issues/30295
531
+ if (box.equals("opensuse-42") == false && box.equals("sles-12") == false) {
532
+ packagingTest.dependsOn(batsPackagingTest)
533
+ }
534
535
536
0 commit comments