Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/evals/gsm8k/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pytest -s -v tests/gsm8k/test_gsm8k_correctness.py \
vllm serve Qwen/Qwen2.5-1.5B-Instruct --port 8000

# Run evaluation
python tests/gsm8k/gsm8k_eval.py --port 8000
python tests/evals/gsm8k/gsm8k_eval.py --port 8000
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The associated script gsm8k_eval.py uses a python3 shebang (#!/usr/bin/env python3). To ensure this command runs reliably across different user environments, it's best practice to use python3 explicitly. On some systems, python may still point to an older, incompatible Python 2 installation, which would cause the script to fail.

Suggested change
python tests/evals/gsm8k/gsm8k_eval.py --port 8000
python3 tests/evals/gsm8k/gsm8k_eval.py --port 8000

```

## Configuration Format
Expand Down