Skip to content

Commit 94a4c32

Browse files
Revert "[test] disable packaging tests for suse boxes" (#38864)
This reverts commit 0b601c6.
1 parent 311eaec commit 94a4c32

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -547,11 +547,7 @@ class VagrantTestPlugin implements Plugin<Project> {
547547
project.gradle.removeListener(batsPackagingReproListener)
548548
}
549549
if (project.extensions.esvagrant.boxes.contains(box)) {
550-
// these tests are temporarily disabled for suse boxes while we debug an issue
551-
// https://github.com/elastic/elasticsearch/issues/30295
552-
if (box.equals("opensuse-42") == false && box.equals("sles-12") == false) {
553-
packagingTest.dependsOn(batsPackagingTest)
554-
}
550+
packagingTest.dependsOn(batsPackagingTest)
555551
}
556552
}
557553

@@ -590,11 +586,7 @@ class VagrantTestPlugin implements Plugin<Project> {
590586
project.gradle.removeListener(javaPackagingReproListener)
591587
}
592588
if (project.extensions.esvagrant.boxes.contains(box)) {
593-
// these tests are temporarily disabled for suse boxes while we debug an issue
594-
// https://github.com/elastic/elasticsearch/issues/30295
595-
if (box.equals("opensuse-42") == false && box.equals("sles-12") == false) {
596-
packagingTest.dependsOn(javaPackagingTest)
597-
}
589+
packagingTest.dependsOn(javaPackagingTest)
598590
}
599591

600592
/*

0 commit comments

Comments
 (0)