From c04d23ea530f8e45a5e97a1ee572aaa3a674c4fa Mon Sep 17 00:00:00 2001 From: Brunobrno Date: Tue, 21 Oct 2025 16:42:12 +0200 Subject: [PATCH] Update test_api.py --- tests/test_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_api.py b/tests/test_api.py index 6ad14cb..52c2a4a 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -32,8 +32,8 @@ def test_integration_search_youtube(monkeypatch): cx = (os.getenv("GOOGLE_CSE_ID") or "").strip() if not key or not cx: - logging.warning("Skipping integration test: missing GOOGLE_DEVELOPER_KEY or GOOGLE_CSE_ID") - pytest.skip("Integration test skipped: GOOGLE_DEVELOPER_KEY/GOOGLE_CSE_ID not set") + logging.warning("Skipping test: missing GOOGLE_DEVELOPER_KEY or GOOGLE_CSE_ID") + pytest.skip("Test skipped: GOOGLE_DEVELOPER_KEY/GOOGLE_CSE_ID not set") # Speed up: don't wait during the test monkeypatch.setattr(api, "RATE_SECONDS", 0)