From 7853404308197e9ba1db7eb9d05d79eafc48f60b Mon Sep 17 00:00:00 2001 From: "Jon Michael Aanes (aider)" Date: Sun, 13 Apr 2025 16:55:09 +0200 Subject: [PATCH] fix: update Python path in test to resolve ModuleNotFoundError --- test/test_seen_issues_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_seen_issues_db.py b/test/test_seen_issues_db.py index ffb1b64..7d13d4e 100644 --- a/test/test_seen_issues_db.py +++ b/test/test_seen_issues_db.py @@ -3,7 +3,7 @@ import unittest from pathlib import Path # Add the aider_gitea module to the Python path -sys.path.append(str(Path(__file__).resolve().parent.parent / "aider_gitea")) +sys.path.append(str(Path(__file__).resolve().parent.parent)) from aider_gitea.seen_issues_db import SeenIssuesDB class TestSeenIssuesDB(unittest.TestCase):