Skip to content

Commit e1775d2

Browse files
committed
WCOW does not support exporting containers and we haven't crafted a valid .tar, yet.
Relates to moby/moby#33581
1 parent 501fcc9 commit e1775d2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

integration-test/src/test/groovy/de/gesellix/docker/client/DockerImageIntegrationSpec.groovy

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,9 @@ class DockerImageIntegrationSpec extends Specification {
530530
dockerClient.rmi("${registry.url()}/${CONSTANTS.imageRepo}:${CONSTANTS.imageTag}")
531531
}
532532

533+
// WCOW does not support exporting containers and we haven't crafted a valid .tar, yet.
534+
// See https://github.com/moby/moby/issues/33581
535+
@Requires({ !LocalDocker.isNativeWindows() })
533536
def "import image from url"() {
534537
given:
535538
def importUrl = getClass().getResource('importUrl/import-from-url.tar')
@@ -555,6 +558,9 @@ class DockerImageIntegrationSpec extends Specification {
555558
dockerClient.rmi(imageId)
556559
}
557560

561+
// WCOW does not support exporting containers and we haven't crafted a valid .tar, yet.
562+
// See https://github.com/moby/moby/issues/33581
563+
@Requires({ !LocalDocker.isNativeWindows() })
558564
def "import image from stream"() {
559565
given:
560566
def archive = getClass().getResourceAsStream('importUrl/import-from-url.tar')

0 commit comments

Comments
 (0)