(probe, source)
| 2279 | } |
| 2280 | |
| 2281 | function decoratePythonProbe(probe, source) { |
| 2282 | if (!probe || !probe.ok) { |
| 2283 | return null; |
| 2284 | } |
| 2285 | return { |
| 2286 | ...probe, |
| 2287 | source, |
| 2288 | sourceLabel: pythonSelectionLabel(source), |
| 2289 | }; |
| 2290 | } |
| 2291 | |
| 2292 | function collectPythonProbes(binaries, source, seenExecutables) { |
| 2293 | const probes = []; |
no test coverage detected