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

Commit

Permalink
Merge pull request #388 from tro3/windows-remove-tests
Browse files Browse the repository at this point in the history
Add integration remove tests to Windows
  • Loading branch information
sdboyer committed Apr 16, 2017
2 parents 4695081 + aae088c commit 11286f9
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions cmd/dep/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ package main
import (
"os"
"path/filepath"
"runtime"
"strings"
"testing"

Expand All @@ -21,12 +20,6 @@ func TestIntegration(t *testing.T) {

filepath.Walk(filepath.Join("testdata", "harness_tests"), func(path string, info os.FileInfo, err error) error {

if runtime.GOOS == "windows" && strings.Contains(path, "remove") {
// TODO skipping the remove tests on windows until some fixes happen in gps -
// see https://github.com/golang/dep/issues/301
return filepath.SkipDir
}

if filepath.Base(path) == "testcase.json" {
parse := strings.Split(path, string(filepath.Separator))
testName := strings.Join(parse[2:len(parse)-1], "/")
Expand Down

0 comments on commit 11286f9

Please sign in to comment.