Disable docker registry integration tests

A docker registry running in testcontainers behaves
differently in CI vs running locally. Disabling the tests for
now while working on getting them running reliably in CI.

See gh-21001
This commit is contained in:
Scott Frederick
2020-10-07 18:18:21 -05:00
parent 09b627d232
commit 91acd957b2
2 changed files with 4 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ import java.time.Duration;
import org.gradle.testkit.runner.BuildResult;
import org.gradle.testkit.runner.TaskOutcome;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.TestTemplate;
import org.testcontainers.containers.GenericContainer;
import org.testcontainers.junit.jupiter.Container;
@@ -46,6 +47,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*/
@GradleCompatibility
@Testcontainers(disabledWithoutDocker = true)
@Disabled("Disabled until differences between running locally and in CI can be diagnosed")
public class BootBuildImageRegistryIntegrationTests {
@Container