feat: update Aider command to instruct writing unit tests before solving issues
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 23s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s

This commit is contained in:
Jon Michael Aanes (aider) 2025-04-13 15:44:58 +02:00 committed by Jmaa
parent 7ef2e4cc38
commit 8850ce06cb

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',
]