From 475645abb089948682878f2a5efccbe7af4f2abf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Feb 2026 21:22:21 +0000 Subject: [PATCH 1/2] Fix SQL test module path in conftest.py fixture Co-authored-by: shaypal5 <917954+shaypal5@users.noreply.github.com> --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index d9ca8ea0..dce44dc7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -70,9 +70,9 @@ def inject_worker_schema_for_sql_tests(monkeypatch, request): monkeypatch.setenv("SQLALCHEMY_DATABASE_URL", new_url) # Also patch the SQL_CONN_STR constant used in tests - import tests.test_sql_core + import tests.sql_tests.test_sql_core - monkeypatch.setattr(tests.test_sql_core, "SQL_CONN_STR", new_url) + monkeypatch.setattr(tests.sql_tests.test_sql_core, "SQL_CONN_STR", new_url) # Ensure schema creation by creating it before tests run try: From c4e2586283f87380f03cc01e57937927c666abc5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Feb 2026 21:21:05 +0000 Subject: [PATCH 2/2] Initial plan