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] add vllm_test_utils #10659

Merged
merged 3 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
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
rename
Signed-off-by: youkaichao <youkaichao@gmail.com>
  • Loading branch information
youkaichao committed Nov 26, 2024
commit 1235ba9a0c34461fccdb331b43151c5a6b9ecb06
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \

# install development dependencies (for testing)
RUN --mount=type=cache,target=/root/.cache/pip \
python3 -m pip install -e tests/vllm_utils
python3 -m pip install -e tests/vllm_test_utils

# enable fast downloads from hf (for testing)
RUN --mount=type=cache,target=/root/.cache/pip \
Expand Down
2 changes: 1 addition & 1 deletion tests/entrypoints/llm/test_lazy_outlines.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

from vllm_utils import blame
from vllm_test_utils import blame

from vllm import LLM, SamplingParams
from vllm.distributed import cleanup_dist_env_and_memory
Expand Down
2 changes: 1 addition & 1 deletion tests/test_lazy_torch_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# this needs to be a standalone script
import sys

from vllm_utils import blame
from vllm_test_utils import blame

module_name = "torch._inductor.async_compile"

Expand Down
7 changes: 7 additions & 0 deletions tests/vllm_test_utils/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from setuptools import setup

setup(
name='vllm_test_utils',
version='0.1',
packages=['vllm_test_utils'],
)
7 changes: 0 additions & 7 deletions tests/vllm_utils/setup.py

This file was deleted.