feat: bump version to 1.11.0 and add verbose pytest flags in Makefile

This commit is contained in:
2025-11-07 16:41:32 +00:00
parent 8d29cc8fe8
commit d59cbb4509
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")