diff --git a/test/components/tools/openapi/test_openapi_client_live_anthropic.py b/test/components/tools/openapi/test_openapi_client_live_anthropic.py index 5467915a..f464f311 100644 --- a/test/components/tools/openapi/test_openapi_client_live_anthropic.py +++ b/test/components/tools/openapi/test_openapi_client_live_anthropic.py @@ -41,6 +41,7 @@ def test_serperdev(self, test_files_path): @pytest.mark.skipif("ANTHROPIC_API_KEY" not in os.environ, reason="ANTHROPIC_API_KEY not set") @pytest.mark.integration + @pytest.mark.skip("This test hits rate limit on Github API. Skip for now.") def test_github(self, test_files_path): config = ClientConfiguration(openapi_spec=create_openapi_spec(test_files_path / "yaml" / "github_compare.yml"), llm_provider=LLMProvider.ANTHROPIC) diff --git a/test/components/tools/openapi/test_openapi_client_live_cohere.py b/test/components/tools/openapi/test_openapi_client_live_cohere.py index 49e8cde6..72a0e231 100644 --- a/test/components/tools/openapi/test_openapi_client_live_cohere.py +++ b/test/components/tools/openapi/test_openapi_client_live_cohere.py @@ -53,6 +53,7 @@ def test_serperdev(self, test_files_path): @pytest.mark.skipif("COHERE_API_KEY" not in os.environ, reason="COHERE_API_KEY not set") @pytest.mark.integration + @pytest.mark.skip("This test hits rate limit on Github API. Skip for now.") def test_github(self, test_files_path): config = ClientConfiguration(openapi_spec=create_openapi_spec(test_files_path / "yaml" / "github_compare.yml"), llm_provider=LLMProvider.COHERE)