(files)
| 151 | |
| 152 | |
| 153 | def build_python_module_paths(files): |
| 154 | _files = [] |
| 155 | for path in build_file_list(files, ".py"): |
| 156 | strpath = str(path) |
| 157 | if strpath.endswith("__init__.py"): |
| 158 | continue |
| 159 | if not strpath.startswith(CHECK_PATHS): |
| 160 | continue |
| 161 | if strpath.startswith(EXCLUDE_PATHS): |
| 162 | continue |
| 163 | _files.append(path) |
| 164 | return _files |
| 165 | |
| 166 | |
| 167 | def build_docs_paths(files): |
no test coverage detected