feat: update Aider command to instruct writing unit tests before solving issues
Some checks failed
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Failing after 29s

This commit is contained in:
Jon Michael Aanes (aider) 2025-04-13 15:44:58 +02:00
parent 4be78a92a1
commit 4313a2fb9f

View File

@ -49,7 +49,7 @@ def create_aider_command(issue: str) -> list[str]:
'--no-auto-lint',
'--api-key', LLM_API_KEY,
'--read', 'CONVENTIONS.md',
'--message', issue,
'--message', "First, write unit tests that validate your changes. Then, solve the issue. Issue details:\n" + issue,
'--yes-always',
'--architect',
]