From 5c844411956033371e247bde51049e441748da3c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Mar 2026 10:27:33 +0000 Subject: [PATCH] fix: add pythonpath = . to pytest.ini to resolve ModuleNotFoundError for app module Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> Agent-Logs-Url: https://github.com/christianlouis/pop_puller_to_gmail/sessions/a88d0d53-5145-4ae3-b86b-5374c55e4a2b --- backend/pytest.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/pytest.ini b/backend/pytest.ini index 96253e8..47cbc1f 100644 --- a/backend/pytest.ini +++ b/backend/pytest.ini @@ -1,6 +1,7 @@ [pytest] asyncio_mode = auto testpaths = tests +pythonpath = . python_files = test_*.py python_classes = Test* python_functions = test_*