From 3425378bb42bc33ab806e6894c8d536db27471c9 Mon Sep 17 00:00:00 2001 From: Jonathan Edey Date: Mon, 16 Dec 2024 14:25:00 -0500 Subject: [PATCH 1/2] chore: Skip integration test for deprecated FCM API --- integration/test_messaging.py | 1 + 1 file changed, 1 insertion(+) 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'), From cccadb9428534afbb649c6af3b0cc9e375e1cdd2 Mon Sep 17 00:00:00 2001 From: Jonathan Edey Date: Tue, 17 Dec 2024 13:44:03 -0500 Subject: [PATCH 2/2] chore: Bump pypy test version to 3.9 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 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