Skip to content

Commit

Permalink
skip MoveRestart conversion test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
willscott committed Apr 10, 2020
1 parent 6787bc7 commit ff9cd6d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion convert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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()

Expand Down

0 comments on commit ff9cd6d

Please sign in to comment.