CICD fixes continue.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-30 08:09:45 -04:00
parent 68e1499532
commit 4a14a3ba65
2 changed files with 6 additions and 1 deletions

View File

@@ -120,5 +120,9 @@ select = [
"TCH" # flake8-type-checking
]
[tool.ruff.lint.isort]
known-first-party = ["backend"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ARG", "S101"]

View File

@@ -1,9 +1,10 @@
"""Integration tests for API endpoints."""
import pytest
from backend.main import app
from fastapi.testclient import TestClient
from backend.main import app
client = TestClient(app)