#!/usr/bin/env bash # Setup for CR5: Test Coverage # The workspace is fully generated by the generator — nothing extra to install. set -euo pipefail WORKSPACE="$1" cd "$WORKSPACE" # Ensure pytest is available python3 -m pip install pytest --quiet 2>/dev/null || true echo "CR5 workspace ready."