call site 10 for path.local.chdir
execnet/testing/test_gateway.py - line 395
394
395
396
397
398
399
400
401
402
   def test_chdir_separation(self):
->     old = py.test.ensuretemp('chdirtest').chdir()
       try:
           gw = py.execnet.PopenGateway()
       finally:
           waschangedir = old.chdir()
       c = gw.remote_exec("import os ; channel.send(os.getcwd())")
       x = c.receive()
       assert x == str(waschangedir)