… Getting Started … Architecture … Testing … Troubleshooting …
- Do not change application code under
fastapi_demo/. - Focus on generating Robot Framework tests (
robot_tests/) and related documentation underdocs/. - Use MCP tools to run and validate tests; store results in
robot_results/.
Create a topic branch from main and include your AI tooling details at the end.
Pattern: r<round>/<tool>/<model>
Examples:
git checkout -b r1/copilot/sonnet45
git checkout -b r2/amazonq/Sonnet45- Keep messages concise:
Add Robot Framework test cases
- Keep PRs focused and small
- Reference related issues (if any)
- Include a brief summary
- App code lives under
fastapi_demo/(unchanged) - Robot tests go under
robot_tests/(executed via MCP) - Unit tests live under
tests/(optional; do not alter app behavior)
Next: Architecture
… Getting Started … Testing …