(t *testing.T)
| 56 | } |
| 57 | |
| 58 | func requireBlastRadiusTools(t *testing.T) { |
| 59 | t.Helper() |
| 60 | if _, err := exec.LookPath("git"); err != nil { |
| 61 | t.Skip("git not available") |
| 62 | } |
| 63 | if !scanner.NewAstGrepAnalyzer().Available() { |
| 64 | t.Skip("ast-grep not available") |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | // Finding #1: analysis must cover the full changed set, not just the capped |
| 69 | // subset that gets displayed. |
no test coverage detected