fix: add module path to Python path in test_seen_issues_db.py
This commit is contained in:
parent
47adf6373b
commit
a5b5263d4b
|
@ -1,4 +1,9 @@
|
||||||
|
import sys
|
||||||
import unittest
|
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
|
from aider_gitea.seen_issues_db import SeenIssuesDB
|
||||||
|
|
||||||
class TestSeenIssuesDB(unittest.TestCase):
|
class TestSeenIssuesDB(unittest.TestCase):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user