We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257bfff commit 632135cCopy full SHA for 632135c
cmd/swarm/swarm-snapshot/create_test.go
@@ -21,6 +21,7 @@ import (
21
"fmt"
22
"io/ioutil"
23
"os"
24
+ "runtime"
25
"sort"
26
"strconv"
27
"strings"
@@ -33,6 +34,10 @@ import (
33
34
// It runs a few "create" commands with different flag values and loads generated
35
// snapshot files to validate their content.
36
func TestSnapshotCreate(t *testing.T) {
37
+ if runtime.GOOS == "windows" {
38
+ t.Skip()
39
+ }
40
+
41
for _, v := range []struct {
42
name string
43
nodes int
0 commit comments