call site 8 for test.config.getvalue_pathlist
test/rsession/testing/test_hostmanage.py - line 256
251
252
253
254
255
256
257
258
259
260
261
   def test_hostmanage_optimise_localhost(self):
       hosts = [HostInfo("localhost") for i in range(3)]
       config = py.test.config._reparse([self.source])
       hm = HostManager(config, hosts=hosts)
       events = []
->     hm.init_rsync(events.append)
       for host in hosts:
           assert host.inplacelocal
           assert host.gw_remotepath is None
           assert not host.relpath 
       assert events
test/rsession/hostmanage.py - line 142
141
142
143
144
145
146
147
148
149
150
151
152
153
154
   def init_rsync(self, reporter):
->     ignores = self.config.getvalue_pathlist("dist_rsync_ignore")
       self.prepare_gateways(reporter)
       # send each rsync root
       for root in self.roots:
           rsync = HostRSync(root, ignores=ignores, 
                             verbose=self.config.option.verbose)
           if self._addrel: 
               destrelpath = ""
           else:
               destrelpath = root.basename
           for host in self.hosts:
               rsync.add_target_host(host, destrelpath, reporter)
           rsync.send(raises=False)