call site 2 for test.collect.Module.join
test/rsession/testing/test_executor.py - line 96
95
96
97
98
99
100
101
102
103
   def test_cont_executor(self):
->     item = self.getexample("printfail")
       ex = AsyncExecutor(item, config=self.config)
       cont, pid = ex.execute()
       assert pid
       outcome_repr = cont()
       outcome = ReprOutcome(outcome_repr)
       assert not outcome.passed
       assert outcome.stdout.find("samfing elz") != -1
test/rsession/testing/basetest.py - line 44
42
43
44
45
46
   def getexample(self, name):
       funcname = "func" + name
->     col = self.collector_test_one.join(funcname)
       assert col is not None, funcname
       return col