From 90bd51df147b56bb186ae27ebf6839ac91105d72 Mon Sep 17 00:00:00 2001 From: Jarek Kowalski Date: Sun, 9 Feb 2020 22:52:17 -0800 Subject: [PATCH] disable failing sftp test on Windows, to be investigated --- repo/blob/sftp/sftp_storage_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/repo/blob/sftp/sftp_storage_test.go b/repo/blob/sftp/sftp_storage_test.go index d8636f11a..b6636696a 100644 --- a/repo/blob/sftp/sftp_storage_test.go +++ b/repo/blob/sftp/sftp_storage_test.go @@ -3,6 +3,7 @@ import ( "context" "os" + "runtime" "strconv" "testing" "time" @@ -20,6 +21,11 @@ func TestSFTPStorageValid(t *testing.T) { ctx := context.Background() + + if runtime.GOOS == "windows" { + t.Skip("temporarily disabled - https://github.com/kopia/kopia/issues/216") + } + st, err := createSFTPStorage(ctx, t) if err != nil {