Skip to content

Commit af437e5

Browse files
authored
Fix SNS test due to better LS parity (#18)
1 parent e4532a7 commit af437e5

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
# setuptools_scm requires git history to determine the version
3232
fetch-depth: 0
3333

34-
- name: "Set up Python 3.11"
34+
- name: "Set up Python 3.13"
3535
uses: actions/setup-python@v5
3636
with:
37-
python-version: "3.11"
37+
python-version: "3.13"
3838

3939
- name: "Install uv"
4040
uses: astral-sh/setup-uv@v3

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

24-
- name: Set up Python 3.11
24+
- name: Set up Python 3.13
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: "3.11"
27+
python-version: "3.13"
2828

2929
- name: Install uv
3030
uses: astral-sh/setup-uv@v3

.python-version

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
3.13
2+

tests/integration/test_aws.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,11 @@ def test_sns_platform_endpoint_messages(self):
122122
topic_arn = client.create_topic(Name=topic_name)["TopicArn"]
123123

124124
app_name = f"app-name-{short_uid()}"
125+
attributes = {"PlatformPrincipal": "test", "PlatformCredential": "test"}
125126
platform_arn = client.create_platform_application(
126127
Name=app_name,
127128
Platform="APNS",
128-
Attributes={},
129+
Attributes=attributes,
129130
)["PlatformApplicationArn"]
130131

131132
endpoint_arn = client.create_platform_endpoint(

0 commit comments

Comments
 (0)