containerd/client_windows_test.go
Darren Stahl e6280a7c82 Enable integration tests on Windows using snapshotter and differ
Signed-off-by: Darren Stahl <darst@microsoft.com>
2018-01-23 15:25:17 -08:00

17 lines
357 B
Go

package containerd
import (
"os"
"path/filepath"
)
const (
defaultAddress = `\\.\pipe\containerd-containerd-test`
testImage = "docker.io/microsoft/nanoserver:latest"
)
var (
defaultRoot = filepath.Join(os.Getenv("programfiles"), "containerd", "root-test")
defaultState = filepath.Join(os.Getenv("programfiles"), "containerd", "state-test")
)