Skip to content

Commit 2605625

Browse files
fix: even longer E2Es for increased reliability
Signed-off-by: Alon Kellner <akellner@redhat.com>
1 parent 6861d81 commit 2605625

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/e2e/test_successful_benchmark.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def test_max_seconds_benchmark(server: VllmSimServer):
4141
Test that the max seconds constraint is properly triggered.
4242
"""
4343
report_path = Path("tests/e2e/max_duration_benchmarks.json")
44-
rate = 10
45-
duration = 2
44+
rate = 4
45+
duration = 5
4646
max_seconds = duration
4747
# Create and configure the guidellm client
4848
client = GuidellmClient(target=server.get_url(), output_path=report_path)
@@ -83,8 +83,8 @@ def test_max_requests_benchmark(server: VllmSimServer):
8383
Test that the max requests constraint is properly triggered.
8484
"""
8585
report_path = Path("tests/e2e/max_number_benchmarks.json")
86-
rate = 10
87-
duration = 2
86+
rate = 4
87+
duration = 5
8888
max_requests = rate * duration
8989

9090
# Create and configure the guidellm client

0 commit comments

Comments
 (0)