General
PromptBeginner5 minmarkdown
2. Apply Deepthink Protocol (reason about dependencies
risks
16
Sign in to like and favorite skills
cd sdk make test
cd sdk make test-integration
Backend logs can be checked by using:
docker logs rhesis-backend-test
cd sdk uv run pytest ../tests/sdk/integration/test_entities.py::test_endpoint
Backend tests must be run from the backend app directory (
apps/backend). The backend's pyproject.toml configures pytest with testpaths = ["../../tests/backend"] and pythonpath = ["src"], so uv run pytest must be executed from apps/backend for paths and imports to resolve correctly.
cd apps/backend uv run pytest ../../tests/backend/ -v
cd apps/backend uv run pytest ../../tests/backend/services/test_adaptive_testing.py::TestCreateAdaptiveTestSet -v
uv run pytest tests/backend/... from repo root); pytest will not be found or paths will be wrong.