Remove unneeded test code
This commit is contained in:
parent
57fad60412
commit
e463a8dbb3
|
@ -1,9 +1,6 @@
|
|||
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):
|
||||
|
@ -20,6 +17,3 @@ class TestSeenIssuesDB(unittest.TestCase):
|
|||
def test_unseen_issue(self):
|
||||
issue_text = "Unseen issue"
|
||||
self.assertFalse(self.db.has_seen(issue_text))
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
Loading…
Reference in New Issue
Block a user