mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-19 14:44:37 +00:00
14 lines
196 B
Python
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)
|