This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Hermes Agent — Python version benchmark | |
| # Runs the full test suite on Python 3.11, 3.12, 3.13, 3.14 | |
| # Each version: fresh venv, delete uv.lock, regenerate lock file, fresh install, run all tests | |
| set -euo pipefail | |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| cd "$SCRIPT_DIR" | |
| VERSIONS=("3.11" "3.12" "3.13" "3.14") |