From 6f596d9793d45443c5d480a70cebf3cd2b5d2d64 Mon Sep 17 00:00:00 2001 From: "vincent.nguyen" Date: Mon, 22 Sep 2025 15:20:40 -0700 Subject: [PATCH 1/2] commented out ollama test case --- .../zzz_hocons/test_smoke_test_hocons.py | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py b/tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py index 06d74cfc0..9195ca9fe 100644 --- a/tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py +++ b/tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py @@ -121,21 +121,21 @@ def test_hocon_with_non_default_llm(self, test_name: str, test_hocon: str): # 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) + # @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) From 37cfd4b52615ebda922c6cfd2cc706d2303e0afc Mon Sep 17 00:00:00 2001 From: "vincent.nguyen" Date: Mon, 22 Sep 2025 15:25:04 -0700 Subject: [PATCH 2/2] uncommented more lines --- .../zzz_hocons/test_smoke_test_hocons.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py b/tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py index 9195ca9fe..442542b3c 100644 --- a/tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py +++ b/tests/neuro_san/zzz_hocons/test_smoke_test_hocons.py @@ -113,14 +113,14 @@ 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. - ])) + # @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