Skip to content

Commit

Permalink
tools/check: skip 'tests' directory in 'make ut' (#35800)
Browse files Browse the repository at this point in the history
close #35799
  • Loading branch information
tiancaiamao authored Jun 29, 2022
1 parent c5ad449 commit 5d7915c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/check/ut.go
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ func (n *numa) testCommand(pkg string, fn string) *exec.Cmd {
}

func skipDIR(pkg string) bool {
skipDir := []string{"br", "cmd", "dumpling"}
skipDir := []string{"br", "cmd", "dumpling", "tests"}
for _, ignore := range skipDir {
if strings.HasPrefix(pkg, ignore) {
return true
Expand Down

0 comments on commit 5d7915c

Please sign in to comment.