9194ef5abd
Docs/Test Workflow / Test docs build (push) Failing after 0s
Check links & references / links-check (push) Failing after 1s
Pytest/Test Workflow / Import Test and Pytest Run (ubuntu-latest, 3.10) (push) Failing after 0s
Pytest/Test Workflow / Import Test and Pytest Run (ubuntu-latest, 3.11) (push) Failing after 0s
PR Conflict Labeler / main (push) Failing after 2s
Pytest/Test Workflow / Import Test and Pytest Run (ubuntu-latest, 3.12) (push) Failing after 2s
Pytest/Test Workflow / Import Test and Pytest Run (ubuntu-latest, 3.13) (push) Failing after 0s
Pytest/Test Workflow / Build this Package (push) Failing after 5s
Pytest/Test Workflow / Import Test and Pytest Run (macos-latest, 3.10) (push) Has been cancelled
Pytest/Test Workflow / Import Test and Pytest Run (macos-latest, 3.11) (push) Has been cancelled
Pytest/Test Workflow / Import Test and Pytest Run (macos-latest, 3.12) (push) Has been cancelled
Pytest/Test Workflow / Import Test and Pytest Run (macos-latest, 3.13) (push) Has been cancelled
Pytest/Test Workflow / Import Test and Pytest Run (windows-latest, 3.10) (push) Has been cancelled
Pytest/Test Workflow / Import Test and Pytest Run (windows-latest, 3.11) (push) Has been cancelled
Pytest/Test Workflow / Import Test and Pytest Run (windows-latest, 3.12) (push) Has been cancelled
Pytest/Test Workflow / Import Test and Pytest Run (windows-latest, 3.13) (push) Has been cancelled
Pytest/Test Workflow / testing-guardian (push) Has been cancelled
36 lines
1.6 KiB
TOML
36 lines
1.6 KiB
TOML
verbose = "info"
|
|
no_progress = true
|
|
include_verbatim = true
|
|
retry_wait_time = 10
|
|
max_retries = 3
|
|
max_concurrency = 8
|
|
cache = false
|
|
accept = [
|
|
200, # OK
|
|
408, # Request Timeout
|
|
# 429 means the server received the request and is actively rate-limiting — the URL is
|
|
# reachable. Real dead links return 404, 410, or fail to connect/resolve; none of
|
|
# those produce a 429, so accepting it here does not hide broken links.
|
|
429, # Too Many Requests (rate-limited but reachable; does not mask dead links)
|
|
# CI regularly sees momentary 502/503/504 from large, healthy hosts (github.com,
|
|
# supervision.roboflow.com), and in-run retries tend to land inside the same
|
|
# incident window. Genuinely dead links surface as 404, 410, or connection/DNS
|
|
# failures, which remain rejected.
|
|
502, # Bad Gateway (transient upstream hiccup)
|
|
503, # Service Unavailable (transient overload or maintenance)
|
|
504, # Gateway Timeout (transient upstream hiccup)
|
|
]
|
|
|
|
exclude = [
|
|
"https://github.com/YOUR_USERNAME/supervision.git", # hint for forking contributors
|
|
"http://127.0.0.1:8000", # hint for local docs server
|
|
"https://sam2.metademolab.com/", # returns 403 Forbidden
|
|
"https://snyk.io/advisor/python/supervision/badge.svg", # badge URL
|
|
"https://trendshift.io", # badge API times out in CI
|
|
"https://universe.roboflow.com/",
|
|
"https://universe.roboflow.com/model-examples/segmented-animals-basic",
|
|
# fixme: this page returns 401 Unauthorized when accessed and 404 Not Found when accessed with browser,
|
|
# which is weird and should be investigated
|
|
"https://huggingface.co/spaces/Roboflow/Annotators",
|
|
]
|