feat: allow agents to follow more detailed instructions
Tests / test (macos-latest, 3.10) (push) Waiting to run
Tests / test (macos-latest, 3.11) (push) Waiting to run
Tests / test (macos-latest, 3.12) (push) Waiting to run
Tests / test (windows-latest, 3.10) (push) Waiting to run
Tests / test (windows-latest, 3.11) (push) Waiting to run
Tests / test (windows-latest, 3.12) (push) Waiting to run
Lint / lint (push) Failing after 28s
Tests / test (ubuntu-latest, 3.12) (push) Successful in 1m25s
Tests / test (ubuntu-latest, 3.10) (push) Failing after 27s
Tests / test (ubuntu-latest, 3.11) (push) Failing after 34s

feat: save user messages to improve agent responses
maintenance: bump version to 1.32.0
refactor: simplify test for review file
This commit is contained in:
2025-11-08 02:39:08 +01:00
parent b90ae1b9c3
commit 8d522302d5
3 changed files with 11 additions and 3 deletions
+2 -2
View File
@@ -229,8 +229,7 @@ class TestReviewFile:
@patch("rp.commands.handlers.read_file")
@patch("rp.core.assistant.process_message")
@patch("asyncio.create_task")
async def test_review_file_success(self, mock_create_task, mock_process, mock_read):
def test_review_file_success(self, 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")
@@ -697,3 +696,4 @@ class TestShowBackgroundEvents:
def test_show_events_exception(self, mock_get):
mock_get.side_effect = Exception("test")
show_background_events(self.assistant)