MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / find_failing_tests

Function find_failing_tests

tools/triage_tests.py:323–329  ·  view source on GitHub ↗

Find all of the failing tests by looking for files with `-failed-diff` at the end of the basename.

(result_images, source)

Source from the content-addressed store, hash-verified

321
322
323def 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
332def launch(result_images, source):

Callers 1

launchFunction · 0.85

Calls 2

EntryClass · 0.85
PathClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…