15 lines
423 B
Bash
15 lines
423 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# Usage:
|
|
# ./run_tests.sh # Test all models from models.env
|
|
# ./run_tests.sh --model 1 # Test model #1
|
|
# ./run_tests.sh --filter Devstral # Test matching models
|
|
# ./run_tests.sh --all # Same as no args
|
|
# ./run_tests.sh --quiet # Less output
|
|
|
|
cd "$SCRIPT_DIR"
|
|
python3 -u run_suite.py "$@"
|