Resolve linter contradictions: consolidate config, fix isort first-party, pylint 10/10
Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/1e4a1f06-55b9-4040-853e-6aaf9ee574c8 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
@@ -1,16 +1,17 @@
|
||||
# Import all models so Base.metadata knows every table
|
||||
import app.models.domain # noqa: F401 # pylint: disable=unused-import
|
||||
import app.models.report # noqa: F401 # pylint: disable=unused-import
|
||||
import app.models.user # noqa: F401 # pylint: disable=unused-import
|
||||
import pytest
|
||||
from app.core.database import Base, get_db
|
||||
from app.main import create_app
|
||||
from app.services.report_store import ReportStore
|
||||
from fastapi import FastAPI
|
||||
from fastapi.testclient import TestClient
|
||||
from sqlalchemy import create_engine
|
||||
from sqlalchemy.orm import sessionmaker
|
||||
|
||||
import app.models.domain # noqa: F401 # pylint: disable=unused-import
|
||||
import app.models.report # noqa: F401 # pylint: disable=unused-import
|
||||
import app.models.user # noqa: F401 # pylint: disable=unused-import
|
||||
from app.core.database import Base, get_db
|
||||
from app.main import create_app
|
||||
from app.services.report_store import ReportStore
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def test_app() -> FastAPI:
|
||||
|
||||
Reference in New Issue
Block a user