mirror of
https://github.com/codeflash-ai/codeflash-agent.git
synced 2026-05-04 18:25:19 +00:00
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'"
|