Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 97011c1

Browse files
committed
Skip TestRemove on windows
These intermittent failures are just ruining CI on other PRs. #301 is open as a reminder to re-renable this test once the underlying problem in gps is fixed.
1 parent f8086d8 commit 97011c1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cmd/dep/remove_test.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package main
66

77
import (
88
"path/filepath"
9+
"runtime"
910
"testing"
1011

1112
"github.com/golang/dep/test"
@@ -22,6 +23,12 @@ type removeTestCase struct {
2223
}
2324

2425
func TestRemove(t *testing.T) {
26+
if runtime.GOOS == "windows" {
27+
// TODO skipping this test on windows until some fixes happen in gps -
28+
// see https://github.com/golang/dep/issues/301
29+
t.Skip()
30+
}
31+
2532
tests := []removeTestCase{
2633
{
2734
dataRoot: "remove/case0",

0 commit comments

Comments
 (0)