Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion test/test_utils/eks.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@

from botocore.exceptions import ClientError
from retrying import retry
from invoke import run, Context

from invoke import run
from invoke.context import Context

DEFAULT_REGION = "us-west-2"

Expand Down
10 changes: 1 addition & 9 deletions test/vllm/ec2/test_artifacts/test_ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,7 @@
from contextlib import contextmanager
from typing import Optional, Tuple

from test.test_utils.ec2 import (
get_account_id_from_image_uri,
login_to_ecr_registry,
get_ec2_client,
install_python_in_instance,
)
from test.test_utils.ec2 import get_account_id_from_image_uri, login_to_ecr_registry, get_ec2_client

from test.vllm.ec2.utils.fsx_utils import FsxSetup
from test.vllm.ec2.infra.setup_ec2 import cleanup_resources, TEST_ID
Expand Down Expand Up @@ -122,7 +117,6 @@ def test_vllm_benchmark_on_multi_node(head_connection, worker_connection, image_
raise Exception("Failed to get HF token")

for conn in [head_connection, worker_connection]:
install_python_in_instance(conn, "3.10")
setup_docker_image(conn, image_uri)
setup_env(conn)

Expand Down Expand Up @@ -257,8 +251,6 @@ def run_single_node_test(head_conn, image_uri):
raise Exception(f"GPU setup verification failed for head node")

try:
install_python_in_instance(head_conn, python_version="3.10")

response = get_secret_hf_token()
hf_token = response.get("HF_TOKEN")

Expand Down