Skip to content

Commit 43ab91e

Browse files
authored
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
1 parent 1b131f0 commit 43ab91e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.8']
11+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9']
1212

1313
steps:
1414
- uses: actions/checkout@v4

integration/test_messaging.py

+1
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ def test_send_all_500():
197197
assert response.exception is None
198198
assert re.match('^projects/.*/messages/.*$', response.message_id)
199199

200+
@pytest.mark.skip(reason="Replaced with test_send_each_for_multicast")
200201
def test_send_multicast():
201202
multicast = messaging.MulticastMessage(
202203
notification=messaging.Notification('Title', 'Body'),

0 commit comments

Comments
 (0)