Skip to content

Commit

Permalink
Mute docker packaging tests (DockerTests)
Browse files Browse the repository at this point in the history
Tracked in #47639
  • Loading branch information
alpar-t committed Oct 7, 2019
1 parent 2ea8844 commit b958467
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,8 @@ private List<ElasticsearchDistribution> configureDistributions(Project project,
List<ElasticsearchDistribution> currentDistros = new ArrayList<>();
List<ElasticsearchDistribution> upgradeDistros = new ArrayList<>();

for (Type type : Arrays.asList(Type.DEB, Type.RPM, Type.DOCKER)) {
// Docker disabled for https://github.com/elastic/elasticsearch/issues/47639
for (Type type : Arrays.asList(Type.DEB, Type.RPM /*,Type.DOCKER*/)) {
for (Flavor flavor : Flavor.values()) {
for (boolean bundledJdk : Arrays.asList(true, false)) {
// We should never add a Docker distro with bundledJdk == false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;

import java.nio.file.Files;
import java.nio.file.Path;
Expand All @@ -54,6 +55,7 @@
import static org.hamcrest.Matchers.emptyString;
import static org.junit.Assume.assumeTrue;

@Ignore("https://github.com/elastic/elasticsearch/issues/47639")
public class DockerTests extends PackagingTestCase {
protected DockerShell sh;

Expand Down

0 comments on commit b958467

Please sign in to comment.