Skip to content

Commit

Permalink
remove 8 concurrent requests tests from all
Browse files Browse the repository at this point in the history
  • Loading branch information
renxida committed Mar 4, 2025
1 parent 027f9f3 commit c860316
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,13 @@ def test_basic_generation_input_ids(
message=f"Generation did not match expected pattern.\nExpected to start with: {expected_prefix}\nActual response: {response}",
)

@pytest.mark.parametrize("concurrent_requests", [2, 4, 8])
@pytest.mark.parametrize(
"concurrent_requests",
[
2,
4,
],
)
def test_concurrent_generation(
self, server: tuple[Any, int], concurrent_requests: int
) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_basic_generation_input_ids(
message=f"Generation did not match expected pattern.\nExpected to start with: {expected_prefix}\nActual response: {response}",
)

@pytest.mark.parametrize("concurrent_requests", [2, 4, 8])
@pytest.mark.parametrize("concurrent_requests", [2, 4])
def test_concurrent_generation(
self, server: tuple[Any, int], concurrent_requests: int
) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,13 @@ def test_basic_generation(self, server: tuple[Any, int]) -> None:
message=f"Generation did not match expected pattern.\nExpected to start with: {expected_prefix}\nActual response: {response}",
)

@pytest.mark.parametrize("concurrent_requests", [2, 4])
@pytest.mark.parametrize(
"concurrent_requests",
[
2,
4,
],
)
def test_concurrent_generation(
self, server: tuple[Any, int], concurrent_requests: int
) -> None:
Expand Down

0 comments on commit c860316

Please sign in to comment.