good morning!!!!

Skip to content
Snippets Groups Projects
Commit 632135ce authored by Elad's avatar Elad Committed by Anton Evangelatov
Browse files

cmd/swarm/swarm-snapshot: disable tests on windows (#18478)

parent 257bfff3
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@ import (
"fmt"
"io/ioutil"
"os"
"runtime"
"sort"
"strconv"
"strings"
......@@ -33,6 +34,10 @@ import (
// It runs a few "create" commands with different flag values and loads generated
// snapshot files to validate their content.
func TestSnapshotCreate(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip()
}
for _, v := range []struct {
name string
nodes int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment