fix: update Python path in test to resolve ModuleNotFoundError
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s

This commit is contained in:
Jon Michael Aanes (aider) 2025-04-13 16:55:09 +02:00 committed by Jmaa
parent d1af40658a
commit 57fad60412

View File

@ -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):