Only rerun if the issue text has been updated #16

Merged
Jmaa merged 4 commits from jmaa/issue-15-only-rerun-if-the-issue-text-has-been-updated into main 2025-04-13 15:28:19 +00:00
Showing only changes of commit a5b5263d4b - Show all commits

View File

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