MCPcopy Create free account
hub / github.com/ipython/ipython / configure

Method configure

IPython/testing/plugin/ipdoctest.py:624–636  ·  view source on GitHub ↗
(self, options, config)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 3

DocTestFinderClass · 0.85
configureMethod · 0.45

Tested by

no test coverage detected