diff options
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r-- | coverage/plugin.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py index fc95eeec..43f291b3 100644 --- a/coverage/plugin.py +++ b/coverage/plugin.py @@ -89,6 +89,15 @@ class CoveragePlugin(object): """ _needs_to_implement(self, "file_reporter") + def find_executable_files(self, src_dir): + """Yield all of the executable files in `dirname`, recursively. + + Executability is a plugin-specific property, but generally means files + which would have been considered for coverage analysis, had they been + included automatically. + """ + return [] + def sys_info(self): """Get a list of information useful for debugging. |