Skip test on windows
Signed-off-by: Derek McGowan <derek@mcgstyle.net>
This commit is contained in:
parent
da5c72c335
commit
585f7d6494
@ -2,6 +2,7 @@ package containerd
|
||||
|
||||
import (
|
||||
"context"
|
||||
"runtime"
|
||||
"testing"
|
||||
|
||||
"github.com/containerd/containerd/snapshot"
|
||||
@ -25,5 +26,8 @@ func TestSnapshotterClient(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip()
|
||||
}
|
||||
if runtime.GOOS == "windows" {
|
||||
t.Skip("snapshots not yet supported on Windows")
|
||||
}
|
||||
testsuite.SnapshotterSuite(t, "SnapshotterClient", newSnapshotter)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user