Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI][Misc] Add tests for python-only development #9370

Closed
wants to merge 10 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix
  • Loading branch information
cermeng committed Oct 15, 2024
commit 80be6d00d5da2b4cb5062c8e721c8843c23d0ace
3 changes: 2 additions & 1 deletion .buildkite/run-code-dev-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ docker run -dit --entrypoint /bin/bash --privileged=true --network host --name v

# Install vllm dev wheel (latest nightly wheel)
docker exec vllm-dev-test bash -c "
pip install https://vllm-wheels.s3.us-west-2.amazonaws.com/${BUILDKITE_COMMIT}/vllm-1.0.0.dev-cp38-abi3-manylinux1_x86_64.whl"
pip install https://vllm-wheels.s3.us-west-2.amazonaws.com/${BUILDKITE_COMMIT}/vllm-1.0.0.dev-cp38-abi3-manylinux1_x86_64.whl && \
pip install setuptools-scm"

# Test python_only_dev.py
docker exec vllm-dev-test bash -c '
Expand Down