Skip to content

Commit 3af7859

Browse files
committed
fix eg V2 tests, run all blob v2 tests for 313
1 parent 355abfb commit 3af7859

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

workers/tests/emulator_tests/test_blob_functions.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,6 @@ def test_blob_trigger_with_large_content(self):
151151
raise
152152

153153

154-
@skipIf(sys.version_info.minor >= 13,
155-
'Temporary skip for Python 3.13+')
156154
class TestBlobFunctionsStein(TestBlobFunctions):
157155

158156
@classmethod

workers/tests/endtoend/eventgrid_functions/eventgrid_functions_stein/function_app.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ def event_grid_trigger(event: func.EventGridEvent) -> str:
3232
topic_key_setting="AzureWebJobsEventGridConnectionKey")
3333
def eventgrid_output_binding(
3434
req: func.HttpRequest,
35-
outputEvent: func.Out[func.EventGridOutputEvent],
36-
msg: func.Out[str]) -> func.HttpResponse:
35+
outputEvent: func.Out[func.EventGridOutputEvent]) -> func.HttpResponse:
3736
test_uuid = req.params.get('test_uuid')
3837
data_to_event_grid = func.EventGridOutputEvent(id="test-id",
3938
data={

0 commit comments

Comments
 (0)