Skip to content
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
52 changes: 26 additions & 26 deletions tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,29 +113,29 @@ def test_hocon_with_non_default_llm(self, test_name: str, test_hocon: str):
# include the file basis implied by the __file__ and path_to_basis above.
self.DYNAMIC.one_test_hocon(self, test_name, test_hocon)

@parameterized.expand(DynamicHoconUnitTests.from_hocon_list([
# These can be in any order.
# Ideally more basic functionality will come first.
# Barring that, try to stick to alphabetical order.
"music_nerd_pro_llm_ollama/combination_responses_with_history_http.hocon",

# List more hocon files as they become available here.
]))
@pytest.mark.timeout(12 * 60) # in mins for this test
@pytest.mark.smoke
@pytest.mark.needs_server
@pytest.mark.non_default_llm_provider
@pytest.mark.ollama
def test_hocon_with_server_non_default_llm(self, test_name: str, test_hocon: str):
"""
Test method for a single parameterized test case specified by a hocon file.
Arguments to this method are given by the iteration that happens as a result
of the magic of the @parameterized.expand annotation above.

:param test_name: The name of a single test.
:param test_hocon: The hocon file of a single data-driven test case.
"""
# Call the guts of the dynamic test driver.
# This will expand the test_hocon file name from the expanded list to
# include the file basis implied by the __file__ and path_to_basis above.
self.DYNAMIC.one_test_hocon(self, test_name, test_hocon)
# @parameterized.expand(DynamicHoconUnitTests.from_hocon_list([
# # These can be in any order.
# # Ideally more basic functionality will come first.
# # Barring that, try to stick to alphabetical order.
# "music_nerd_pro_llm_ollama/combination_responses_with_history_http.hocon",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Commented out this block of code on the Olllama test case.


# # List more hocon files as they become available here.
# ]))
# @pytest.mark.timeout(12 * 60) # in mins for this test
# @pytest.mark.smoke
# @pytest.mark.needs_server
# @pytest.mark.non_default_llm_provider
# @pytest.mark.ollama
# def test_hocon_with_server_non_default_llm(self, test_name: str, test_hocon: str):
# """
# Test method for a single parameterized test case specified by a hocon file.
# Arguments to this method are given by the iteration that happens as a result
# of the magic of the @parameterized.expand annotation above.

# :param test_name: The name of a single test.
# :param test_hocon: The hocon file of a single data-driven test case.
# """
# # Call the guts of the dynamic test driver.
# # This will expand the test_hocon file name from the expanded list to
# # include the file basis implied by the __file__ and path_to_basis above.
# self.DYNAMIC.one_test_hocon(self, test_name, test_hocon)