feat: redesign issue processing to planning and question board with WIP PR workflow (#3)

Co-authored-by: Michael <michael@example.com>
Reviewed-on: #3
This commit is contained in:
2026-06-29 20:35:46 +02:00
parent bf13a979c2
commit a0c247b152
10 changed files with 658 additions and 68 deletions
+4 -4
View File
@@ -9,7 +9,7 @@ def test_get_file_content_string_success() -> None:
file_tools: FileTools = FileTools(mock_client)
res: str = file_tools.get_file_content("owner", "repo", "path/to/file")
assert res == "file content here"
assert res == "1: file content here"
mock_client.get_file_content.assert_called_once_with("owner", "repo", "path/to/file")
@@ -19,7 +19,7 @@ def test_get_file_content_list_success() -> None:
file_tools: FileTools = FileTools(mock_client)
res: str = file_tools.get_file_content("owner", "repo", "path/to/file")
assert res == "line1\nline2"
assert res == "1: line1\n2: line2"
def test_get_file_content_failure() -> None:
@@ -37,7 +37,7 @@ def test_get_file_content_with_ref_string_success() -> None:
file_tools: FileTools = FileTools(mock_client)
res: str = file_tools.get_file_content_with_ref("owner", "repo", "path/to/file", "main")
assert res == "file content here"
assert res == "1: file content here"
mock_client.get_file_content.assert_called_once_with("owner", "repo", "path/to/file", "main")
@@ -47,7 +47,7 @@ def test_get_file_content_with_ref_list_success() -> None:
file_tools: FileTools = FileTools(mock_client)
res: str = file_tools.get_file_content_with_ref("owner", "repo", "path/to/file", "main")
assert res == "line1\nline2"
assert res == "1: line1\n2: line2"
def test_get_file_content_with_ref_failure() -> None: