Skip to content

Commit

Permalink
tools/ut: skip Lightning tests in make ut (pingcap#52341)
Browse files Browse the repository at this point in the history
  • Loading branch information
bb7133 authored Apr 7, 2024
1 parent 555ce02 commit 2c4c5bb
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 @@ -840,7 +840,7 @@ func (n *numa) testCommand(pkg string, fn string) *exec.Cmd {
}

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

0 comments on commit 2c4c5bb

Please sign in to comment.