From afe385d48b03b42c3f599e72da854bae2555dfb8 Mon Sep 17 00:00:00 2001 From: panw Date: Mon, 30 Mar 2026 15:01:15 +0800 Subject: [PATCH] fix: improve conftest.py with comments and remove unused imports - Remove unused imports (os, tempfile) - Add comment explaining app.models import will fail until Task 2.1 Co-Authored-By: Claude Opus 4.6 --- backend/tests/conftest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/tests/conftest.py b/backend/tests/conftest.py index 4ffe1b8..2451f5a 100644 --- a/backend/tests/conftest.py +++ b/backend/tests/conftest.py @@ -1,6 +1,4 @@ -import os import sys -import tempfile import pytest from pathlib import Path @@ -9,6 +7,9 @@ sys.path.insert(0, str(Path(__file__).parent.parent)) from sqlalchemy import create_engine from sqlalchemy.orm import sessionmaker + +# NOTE: This import will fail until models are created in Task 2.1 +# This is expected behavior - the models module doesn't exist yet from app.models import Base