Suppress pyright attribute access issue for BASE_URL in test fixture
All checks were successful
Deploy to Server / deploy (push) Successful in 19s

This commit is contained in:
Joakim Hellsén 2026-03-22 00:13:11 +01:00
commit 7478d4c851
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk

View file

@ -44,7 +44,7 @@ if TYPE_CHECKING:
@pytest.fixture(autouse=True)
def apply_base_url_override(settings: object) -> None:
"""Ensure BASE_URL is globally overridden for all tests."""
settings.BASE_URL = "https://ttvdrops.lovinator.space"
settings.BASE_URL = "https://ttvdrops.lovinator.space" # pyright: ignore[reportAttributeAccessIssue]
@pytest.mark.django_db