From 43ab91e22d02e5d07dfcc77e6943f4d1251c291e Mon Sep 17 00:00:00 2001 From: Jonathan Edey <145066863+jonathanedey@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:35:16 -0500 Subject: [PATCH] chore: Skip integration test for deprecated FCM API and bump pypy CI to 3.9 (#840) * chore: Skip integration test for deprecated FCM API * chore: Bump pypy test version to 3.9 --- .github/workflows/ci.yml | 2 +- integration/test_messaging.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 127aa2e7..4cc8ec48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.8'] + python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9'] steps: - uses: actions/checkout@v4 diff --git a/integration/test_messaging.py b/integration/test_messaging.py index 522e87e8..50b4ae3a 100644 --- a/integration/test_messaging.py +++ b/integration/test_messaging.py @@ -197,6 +197,7 @@ def test_send_all_500(): assert response.exception is None assert re.match('^projects/.*/messages/.*$', response.message_id) +@pytest.mark.skip(reason="Replaced with test_send_each_for_multicast") def test_send_multicast(): multicast = messaging.MulticastMessage( notification=messaging.Notification('Title', 'Body'),