Find all of the failing tests by looking for files with `-failed-diff` at the end of the basename.
(result_images, source)
| 321 | |
| 322 | |
| 323 | def find_failing_tests(result_images, source): |
| 324 | """ |
| 325 | Find all of the failing tests by looking for files with |
| 326 | `-failed-diff` at the end of the basename. |
| 327 | """ |
| 328 | return [Entry(path, result_images, source) |
| 329 | for path in sorted(Path(result_images).glob("**/*-failed-diff.*"))] |
| 330 | |
| 331 | |
| 332 | def launch(result_images, source): |