2021-03-02 11:49:37 -08:00

14 lines
196 B
Python

import contextlib
import os
@contextlib.contextmanager
def isolated_filesystem(temp_dir):
cwd = os.getcwd()
os.chdir(temp_dir)
try:
yield
finally:
os.chdir(cwd)