Skip to content
Open
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
3 changes: 2 additions & 1 deletion approvaltests/internals/logs/log_commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def download_script_from_common_repo_if_needed(
return False

response = requests.get(
f"https://raw.githubusercontent.com/approvals/ApprovalTests.CommonScripts/refs/heads/main/{script_name_with_suffix}"
f"https://raw.githubusercontent.com/approvals/ApprovalTests.CommonScripts/refs/heads/main/{script_name_with_suffix}",
timeout=5
)
if response.ok:
script_path.write_text(response.text)
Expand Down