(self)
| 302 | ) |
| 303 | |
| 304 | def test_include_wildcard(self): |
| 305 | # This may be surprising but it matches the CLI's behavior |
| 306 | # (tested with 18.05.0-ce on linux) |
| 307 | base = make_tree(['a'], ['a/b.py']) |
| 308 | assert exclude_paths( |
| 309 | base, |
| 310 | ['*', '!*/b.py'] |
| 311 | ) == set() |
| 312 | |
| 313 | def test_last_line_precedence(self): |
| 314 | base = make_tree( |
nothing calls this directly
no test coverage detected