call site 0 for test.config.parse
test/rsession/testing/test_hostmanage.py - line 184
183
184
185
186
   def test_hostmanager_custom_hosts(self):
->     config = py.test.config._reparse([self.source])
       hm = HostManager(config, hosts=[1,2,3])
       assert hm.hosts == [1,2,3]
test/config.py - line 187
180
181
182
183
184
185
186
187
188
189
190
   def _reparse(self, args):
       """ this is used from tests that want to re-invoke parse(). """
       #assert args # XXX should not be empty
       global config_per_process
       oldconfig = py.test.config
       try:
           config_per_process = py.test.config = Config()
->         config_per_process.parse(args) 
           return config_per_process
       finally: 
           config_per_process = py.test.config = oldconfig