Disable integration test on Linux

See gh-19836
This commit is contained in:
Stephane Nicoll 2020-01-21 10:46:55 +01:00
parent ffd7670843
commit d421c63747

View File

@ -19,6 +19,8 @@ package org.springframework.boot.cloudnativebuildpack.docker;
import java.io.IOException;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.springframework.boot.cloudnativebuildpack.docker.type.ImageReference;
import org.springframework.boot.testsupport.testcontainers.DisabledIfDockerUnavailable;
@ -29,6 +31,7 @@ import org.springframework.boot.testsupport.testcontainers.DisabledIfDockerUnava
* @author Phillip Webb
*/
@DisabledIfDockerUnavailable
@DisabledOnOs(OS.LINUX)
class DockerApiIntegrationTests {
private final DockerApi docker = new DockerApi();