Skip to content

Commit a012d42

Browse files
committed
Fix channel buffer
1 parent f042090 commit a012d42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/parse/parse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var defaultIgnoreDirs = []string{
1717
}
1818

1919
func ProcessFilesRecursively(rootDir string, skipSubtests bool) (map[string][]*tip.TestFunction, error) {
20-
fileListQueue := make(chan *gocodewalker.File, 1)
20+
fileListQueue := make(chan *gocodewalker.File, 100)
2121

2222
fileWalker := gocodewalker.NewFileWalker(rootDir, fileListQueue)
2323
fileWalker.AllowListExtensions = append(fileWalker.AllowListExtensions, "go")

0 commit comments

Comments
 (0)