Code-only import without upstream history. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
11 lines
179 B
Bash
Executable File
11 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit on any error
|
|
set -e
|
|
|
|
echo "Activating virtual environment..."
|
|
source ./venv/bin/activate
|
|
|
|
pytest --cov=laborious --cov-report=html
|
|
|
|
xdg-open htmlcov/index.html |