Commit d421c637 authored by Stephane Nicoll's avatar Stephane Nicoll

Disable integration test on Linux

See gh-19836
parent ffd76708
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment