From c9f99fbb0574d858398855090b549c209c065379 Mon Sep 17 00:00:00 2001 From: "Jon Michael Aanes (aider)" Date: Sun, 13 Apr 2025 16:55:06 +0200 Subject: [PATCH] fix: update Python path to include aider_gitea module for tests --- 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 7d13d4e..ffb1b64 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)) +sys.path.append(str(Path(__file__).resolve().parent.parent / "aider_gitea")) from aider_gitea.seen_issues_db import SeenIssuesDB class TestSeenIssuesDB(unittest.TestCase):