Skip to content

Commit

Permalink
tests: enable previously skipped tests
Browse files Browse the repository at this point in the history
This enables 3 tests that had been previously skipped
due to the lack of Windows support initially.

The remaining ones in that group, see #4485, will need
some code modifications to be enabled.

Signed-off-by: Anthony Nandaa <profnandaa@gmail.com>
  • Loading branch information
profnandaa committed Dec 18, 2023
1 parent a711a6d commit 18d40f0
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions source/http/source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"os"
"path/filepath"
"runtime"
"testing"

"github.com/containerd/containerd/content/local"
Expand All @@ -28,10 +27,6 @@ import (
)

func TestHTTPSource(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Depends on unimplemented containerd bind-mount support on Windows")
}

t.Parallel()
ctx := context.TODO()

Expand Down Expand Up @@ -147,10 +142,6 @@ func TestHTTPSource(t *testing.T) {
}

func TestHTTPDefaultName(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Depends on unimplemented containerd bind-mount support on Windows")
}

t.Parallel()
ctx := context.TODO()

Expand Down Expand Up @@ -217,10 +208,6 @@ func TestHTTPInvalidURL(t *testing.T) {
}

func TestHTTPChecksum(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Depends on unimplemented containerd bind-mount support on Windows")
}

t.Parallel()
ctx := context.TODO()

Expand Down

0 comments on commit 18d40f0

Please sign in to comment.