mirror of
https://github.com/codeflash-ai/codeflash-agent.git
synced 2026-05-04 18:25:19 +00:00
Add team member dimension to case study paths so multiple contributors can track optimization data independently. Derives member from git config user.name in session-start hooks. - Move all case studies under .codeflash/krrt7/ - Rename pypa/pip → python/pip (org grouping) - Update session-start hooks, docs, scripts, and references
6 lines
204 B
Bash
6 lines
204 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
VENV_PYTHON="$HOME/rich/.venv/bin/python"
|
|
echo "=== Rich overall import time ==="
|
|
hyperfine --warmup 3 --min-runs 30 --shell=none \
|
|
"$VENV_PYTHON -c 'import rich'"
|