… Getting Started … Development Workflow … Architecture … Troubleshooting …
- Add your
.robotsuites torobot_tests/ - Use your IDE’s MCP integration (configured by
./quick-start.sh) to:- List tests
- Run a suite
- Run a single test
- Run Robocop audits
Results are saved under robot_results/ (mapped from container /results).
Run unit tests inside the running app container:
docker exec -it books-database-service pytest -qRun a specific test:
docker exec -it books-database-service pytest tests/test_books.py::test_create_book -q -vvOpenAPI docs are available at http://localhost:8000/docs once the service is up.
… Troubleshooting … Architecture …
Next: Troubleshooting