(self, options, config)
| 622 | |
| 623 | |
| 624 | def configure(self, options, config): |
| 625 | Plugin.configure(self, options, config) |
| 626 | # Pull standard doctest plugin out of config; we will do doctesting |
| 627 | config.plugins.plugins = [p for p in config.plugins.plugins |
| 628 | if p.name != 'doctest'] |
| 629 | self.doctest_tests = options.doctest_tests |
| 630 | self.extension = tolist(options.doctestExtension) |
| 631 | |
| 632 | self.parser = doctest.DocTestParser() |
| 633 | self.finder = DocTestFinder() |
| 634 | self.checker = IPDoctestOutputChecker() |
| 635 | self.globs = None |
| 636 | self.extraglobs = None |
| 637 | |
| 638 | |
| 639 | def loadTestsFromExtensionModule(self,filename): |
nothing calls this directly
no test coverage detected