(s)
| 146 | paths = set() |
| 147 | |
| 148 | def is_excluded(s): |
| 149 | for exclude in excludes: |
| 150 | if fnmatch.fnmatch(s, exclude): |
| 151 | return True |
| 152 | return False |
| 153 | |
| 154 | for directory, _, filenames in os.walk(package_dir): |
| 155 | if is_excluded(directory): |
no outgoing calls
no test coverage detected
searching dependent graphs…