(self)
| 165 | |
| 166 | @property |
| 167 | def will_run(self): |
| 168 | return self.enabled and all(have[p] for p in self.dependencies) |
| 169 | |
| 170 | # Name -> (include, exclude, dependencies_met) |
| 171 | test_sections = {n:TestSection(n, ['IPython.%s' % n]) for n in test_group_names} |
nothing calls this directly
no outgoing calls
no test coverage detected