From ecdc37d9c738d8b36ddf99576d9cbf578036aca4 Mon Sep 17 00:00:00 2001 From: Vladimir Blagojevic Date: Tue, 18 Jun 2024 23:55:56 +0200 Subject: [PATCH] Skip github tests --- test/components/tools/openapi/test_openapi_client_live.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/components/tools/openapi/test_openapi_client_live.py b/test/components/tools/openapi/test_openapi_client_live.py index a248502b..3c3179d5 100644 --- a/test/components/tools/openapi/test_openapi_client_live.py +++ b/test/components/tools/openapi/test_openapi_client_live.py @@ -30,6 +30,7 @@ def test_serperdev(self, test_files_path): assert "invention" in str(response) @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")) api = OpenAPIServiceClient(config)