Note that this only returns patterns added via *add_includepaths*, and it won't return PathFullPattern patterns, as we do not maintain match_count for them.
(self)
| 125 | self.include_patterns = include_patterns |
| 126 | |
| 127 | def get_unmatched_include_patterns(self): |
| 128 | """Note that this only returns patterns added via *add_includepaths*, and it |
| 129 | won't return PathFullPattern patterns, as we do not maintain match_count for them. |
| 130 | """ |
| 131 | return [p for p in self.include_patterns if p.match_count == 0 and not isinstance(p, PathFullPattern)] |
| 132 | |
| 133 | def add_inclexcl(self, patterns): |
| 134 | """Add list of patterns (of type CmdTuple) to internal list.""" |
no outgoing calls
no test coverage detected