diff --git a/fileutils/fileutils.go b/fileutils/fileutils.go index da0db9e..9a6f67d 100644 --- a/fileutils/fileutils.go +++ b/fileutils/fileutils.go @@ -53,11 +53,12 @@ func ShouldSkip(path string, info os.FileInfo, tests, all bool) bool { case tests && testdata: skip = false + // https://github.com/FiloSottile/gvt/issues/85 // https://golang.org/cmd/go/#hdr-Description_of_package_lists - case strings.HasPrefix(name, "."): - skip = true - case strings.HasPrefix(name, "_") && name != "_testdata": - skip = true + // case strings.HasPrefix(name, "."): + // skip = true + // case strings.HasPrefix(name, "_") && name != "_testdata": + // skip = true case !tests && name == "_testdata" && info.IsDir(): skip = true