mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-27 20:03:53 +08:00
12 lines
349 B
Python
12 lines
349 B
Python
import tempfile
|
|
|
|
from unittest import mock
|
|
|
|
def temporary_cache_dir(func):
|
|
def wrapper(*args, **kwargs):
|
|
with tempfile.TemporaryDirectory() as temp_dir:
|
|
cache_dir_patch = mock.patch("openpilot.tools.lib.url_file.CACHE_DIR", temp_dir)
|
|
cache_dir_patch.start()
|
|
func(*args, **kwargs)
|
|
cache_dir_patch.stop()
|
|
return wrapper |