| Function | patch_find_tests | Add a post-processing hook to zope.testing.testrunner.find_tests. |
| Function | filter_tests | Create a hook for patch_find_tests that filters tests based on id. |
This is useful for things like filtering tests or listing tests.
| Parameters | hook | A callable that takes the output of the real
testrunner.find_tests and returns a thing with the same type and
structure. |
patch_find_tests that filters tests based on id.| Parameters | list_name | A filename that contains a newline-separated list of
test ids, as generated by list_tests. |
| Returns | A callable that takes a result of testrunner.find_tests and
returns only those tests with ids in the file 'list_name'. | |