Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devservices/utils/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def _checkout_dependency(
"branch": dependency.branch,
},
)
with tempfile.TemporaryDirectory() as temp_dir:
with tempfile.TemporaryDirectory(ignore_cleanup_errors=True) as temp_dir:
try:
_run_command(
[
Expand Down
2 changes: 1 addition & 1 deletion devservices/utils/install_binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def install_binary(
url: str,
) -> None:
console = Console()
with tempfile.TemporaryDirectory() as temp_dir:
with tempfile.TemporaryDirectory(ignore_cleanup_errors=True) as temp_dir:
temp_file = os.path.join(temp_dir, binary_name)

# Download the binary with retries
Expand Down
Loading