feat: introduce agent communication, autonomous detection, and plugin support

feat: add interactive modes and a new agent execution tool
maintenance: update version to 1.12.0
perf: improve performance
refactor: update test execution with verbose output and error handling
This commit is contained in:
2025-11-07 17:41:32 +01:00
parent 0f5dce1617
commit a2468b7d5b
4 changed files with 12 additions and 3 deletions
+2 -1
View File
@@ -228,7 +228,8 @@ class TestReviewFile:
@patch("pr.commands.handlers.read_file")
@patch("pr.core.assistant.process_message")
def test_review_file_success(self, mock_process, mock_read):
@patch("asyncio.create_task")
async def test_review_file_success(self, mock_create_task, mock_process, mock_read):
mock_read.return_value = {"status": "success", "content": "test content"}
review_file(self.assistant, "test.py")
mock_read.assert_called_once_with("test.py")