Using invoke, how can I change the directory that the run call operates in?
In Fabric, one would
from fabric.context_managers import lcd
with lcd('foo'):
local('do')
to run do in the foo directory, but I can't find a similar import in pyinvoke.