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

test: Increase test timeout for test stability #100

Merged
merged 2 commits into from
Jan 16, 2025
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
10 changes: 7 additions & 3 deletions tests/test_e2e.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -52,7 +52,9 @@ class TestE2E:
),
],
)
@pytest.mark.timeout(600)
# Give ample 30min timeout for now as this test will currently download
# models from huggingface as well, and network speed is intermittent.
@pytest.mark.timeout(1800)
def test_tensorrtllm_e2e(self, llm_server, protocol):
# NOTE: TRTLLM test models will be passed by the testing infrastructure.
# Only a single model will be passed per test to enable tests to run concurrently.
Expand Down Expand Up @@ -82,7 +84,9 @@ def test_tensorrtllm_e2e(self, llm_server, protocol):
),
],
)
@pytest.mark.timeout(900)
# Give ample 30min timeout for now as this test will currently download
# models from huggingface as well, and network speed is intermittent.
@pytest.mark.timeout(1800)
def test_vllm_e2e(self, llm_server, protocol):
# NOTE: VLLM test models will be passed by the testing infrastructure.
# Only a single model will be passed per test to enable tests to run concurrently.
Expand Down