Skip to content

Commit

Permalink
Reduce number of params in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paulovcmedeiros committed Mar 3, 2024
1 parent b01ed80 commit 709a3cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ def _mock_input(*args, **kwargs): # noqa: ARG001
)


@pytest.fixture(params=ChatOptions.get_allowed_values("model"))
@pytest.fixture(params=ChatOptions.get_allowed_values("model")[:3])
def llm_model(request):
return request.param


@pytest.fixture(params=ChatOptions.get_allowed_values("context_model"))
@pytest.fixture(params=ChatOptions.get_allowed_values("context_model")[:3])
def context_model(request):
return request.param

Expand Down

0 comments on commit 709a3cb

Please sign in to comment.