fix: add module path to Python path in test_seen_issues_db.py

This commit is contained in:
Jon Michael Aanes (aider) 2025-04-13 16:55:03 +02:00
parent 47adf6373b
commit a5b5263d4b

View File

@ -1,4 +1,9 @@
import sys
import unittest
from pathlib import Path
# Add the aider_gitea module to the Python path
sys.path.append(str(Path(__file__).resolve().parent.parent))
from aider_gitea.seen_issues_db import SeenIssuesDB
class TestSeenIssuesDB(unittest.TestCase):