File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -391,7 +391,11 @@ class VagrantTestPlugin implements Plugin<Project> {
391391 project. gradle. removeListener(batsPackagingReproListener)
392392 }
393393 if (project. extensions. esvagrant. boxes. contains(box)) {
394- packagingTest. dependsOn(batsPackagingTest)
394+ // these tests are temporarily disabled for suse boxes while we debug an issue
395+ // https://github.com/elastic/elasticsearch/issues/30295
396+ if (box. equals(" opensuse-42" ) == false && box. equals(" sles-12" ) == false ) {
397+ packagingTest. dependsOn(batsPackagingTest)
398+ }
395399 }
396400
397401 // This task doesn't do anything yet. In the future it will execute a jar containing tests on the vm
You can’t perform that action at this time.
0 commit comments