Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.13 KB

File metadata and controls

42 lines (26 loc) · 1.13 KB

Development Workflow

Getting StartedArchitectureTestingTroubleshooting

Scope Constraints

  • Do not change application code under fastapi_demo/.
  • Focus on generating Robot Framework tests (robot_tests/) and related documentation under docs/.
  • Use MCP tools to run and validate tests; store results in robot_results/.

Branching

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

Commits

  • Keep messages concise: Add Robot Framework test cases

Pull Requests

  • Keep PRs focused and small
  • Reference related issues (if any)
  • Include a brief summary

Code & Tests

  • 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 StartedTesting