Gate debug urls on enabled debug apps
Some checks are pending
CodeQL / Analyze (${{ matrix.language }}) (none, python) (push) Waiting to run
Build Debian package / build (amd64) (push) Waiting to run
Build Debian package / build (arm64) (push) Waiting to run
Build Debian package / test (amd64, ubuntu-24.04) (push) Blocked by required conditions
Build Debian package / test (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
Build Debian package / release (push) Blocked by required conditions
Build Docker image / buildx (push) Waiting to run
Run linters / lint (push) Waiting to run
Build Pip package / build (push) Waiting to run
Release State / release-state (push) Waiting to run
Parallel Tests / Discover test files (push) Waiting to run
Parallel Tests / ${{ matrix.test.name }} (push) Blocked by required conditions
Parallel Tests / ${{ matrix.plugin.name }} (push) Blocked by required conditions
Run tests / python_tests (ubuntu-22.04, 3.13) (push) Waiting to run
Run tests / docker_tests (push) Waiting to run

This commit is contained in:
Nick Sweeting 2026-05-17 00:17:46 -07:00
parent 0cc4251c8a
commit 33b3944c2a
No known key found for this signature in database

View File

@ -3,6 +3,7 @@ __package__ = "archivebox.core"
import sys
from importlib.util import find_spec
from django.conf import settings
from django.urls import path, re_path, include
from django.views import static
from django.views.generic.base import RedirectView
@ -83,10 +84,10 @@ def _raise_test_error(_request: HttpRequest):
raise ZeroDivisionError("Intentional test error route")
if DEBUG and ("--nothreading" in sys.argv) and ("--reload" not in sys.argv) and find_spec("debug_toolbar"):
if getattr(settings, "DEBUG_TOOLBAR", False):
urlpatterns += [path("__debug__/", include("debug_toolbar.urls"))]
if DEBUG and find_spec("requests_tracker"):
if getattr(settings, "DEBUG_REQUESTS_TRACKER", False) and find_spec("requests_tracker"):
urlpatterns += [path("__requests_tracker__/", include("requests_tracker.urls"))]