From ff9cd6d683b06237d10c61ca38389b36c8b46f57 Mon Sep 17 00:00:00 2001 From: Will Scott Date: Thu, 9 Apr 2020 21:21:02 -0700 Subject: [PATCH] skip MoveRestart conversion test on windows --- convert_test.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/convert_test.go b/convert_test.go index 9e819ad..a8e8a5e 100644 --- a/convert_test.go +++ b/convert_test.go @@ -7,11 +7,12 @@ import ( "math/rand" "os" "path/filepath" + "runtime" "testing" "time" "github.com/ipfs/go-datastore" - "github.com/ipfs/go-ds-flatfs" + flatfs "github.com/ipfs/go-ds-flatfs" ) func TestMove(t *testing.T) { @@ -57,6 +58,9 @@ func TestMove(t *testing.T) { } func TestMoveRestart(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip() + } tempdir, cleanup := tempdir(t) defer cleanup()