(path string)
| 193 | } |
| 194 | |
| 195 | func ShouldIgnore(path string) bool { |
| 196 | for _, p := range ignorePaths { |
| 197 | if strings.Contains(path, fmt.Sprintf("%s/", p)) || strings.HasSuffix(path, p) { |
| 198 | return true |
| 199 | } |
| 200 | } |
| 201 | return false |
| 202 | } |
| 203 | |
| 204 | func (e *Executor) collectSources(calls []*Call) ([]string, error) { |
| 205 | var sources []string |
no outgoing calls
no test coverage detected
searching dependent graphs…