From ec826b6881f5891b43f926cf57ed2b9833e01f78 Mon Sep 17 00:00:00 2001 From: Vladimir Blagojevic Date: Tue, 18 Jun 2024 23:49:44 +0200 Subject: [PATCH] Skip github test --- test/components/tools/openapi/test_openapi_client_live_openai.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/components/tools/openapi/test_openapi_client_live_openai.py b/test/components/tools/openapi/test_openapi_client_live_openai.py index 716f04ea..69c11652 100644 --- a/test/components/tools/openapi/test_openapi_client_live_openai.py +++ b/test/components/tools/openapi/test_openapi_client_live_openai.py @@ -39,6 +39,7 @@ def test_serperdev(self, test_files_path): @pytest.mark.skipif("OPENAI_API_KEY" not in os.environ, reason="OPENAI_API_KEY not set") @pytest.mark.integration + @pytest.mark.skip("This test is 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")) client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))