(self)
| 72 | return set(exclude_paths(self.base, patterns, dockerfile=dockerfile)) |
| 73 | |
| 74 | def test_no_excludes(self): |
| 75 | assert self.exclude(['']) == convert_paths(self.all_paths) |
| 76 | |
| 77 | def test_no_dupes(self): |
| 78 | paths = exclude_paths(self.base, ['!a.py']) |
nothing calls this directly
no test coverage detected