(p: string, want: string)
| 1524 | const rel = mod.replace(/\./g, '/'); |
| 1525 | const lastSeg = mod.split('.').pop()!; |
| 1526 | const endsWith = (p: string, want: string): boolean => p === want || p.endsWith('/' + want); |
| 1527 | const moduleFile = context |
| 1528 | .getNodesByName(`${lastSeg}.py`) |
| 1529 | .find((n) => n.kind === 'file' && n.filePath !== excludeFilePath && endsWith(n.filePath, `${rel}.py`)); |
no outgoing calls
no test coverage detected