mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 10:32:10 +08:00
b08c5d7517
old-commit-hash: dd9b0231c696607c14a8c10adeeb4d047c5ff782
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 |