han811's picture
add task templates for rebuttal
7e760fb
Raw
History Blame Contribute Delete
300 Bytes
#!/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."