File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
eng/templates/official/jobs Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ jobs:
130
130
definition : 652
131
131
specificBuildWithTriggering : true
132
132
buildVersionToDownload : latestFromBranch
133
- branchName : refs/heads/${{ parameters.BRANCH_NAME }}
133
+ branchName : refs/heads/${{ parameters.BRANCH_NAME }}/$(NewLibraryVersion)
134
134
targetPath : PythonRuntimeArtifact
135
135
- task : UsePythonVersion@0
136
136
displayName : ' Use Python 3.13'
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ dependencies = [
40
40
" grpcio ~=1.59.0; python_version >= '3.8' and python_version < '3.13'" ,
41
41
" grpcio~=1.70.0; python_version >= '3.13'" ,
42
42
" azurefunctions-extensions-base; python_version >= '3.8'" ,
43
- " azure-functions-runtime==1.0.0a3 ; python_version >= '3.13'" ,
43
+ " azure-functions-runtime==1.0.0b2 ; python_version >= '3.13'" ,
44
44
" azure-functions-runtime-v1==1.0.0b1; python_version >= '3.13'"
45
45
]
46
46
Original file line number Diff line number Diff line change @@ -40,10 +40,15 @@ def get_script_dir(cls):
40
40
'multiple_function_registers'
41
41
42
42
def test_function_in_blueprint_only (self ):
43
+ """Test if the Asgi template in Python
44
+ Function app will not return OK
45
+ """
43
46
r = self .webhost .request ('GET' , 'return_http' )
44
47
self .assertEqual (r .status_code , 404 )
45
48
46
49
50
+ @skipIf (sys .version_info .minor >= 13 ,
51
+ "TODO: fix test setup. 3.13 fails indexing in init." )
47
52
class TestOnlyBlueprint (testutils .WebHostTestCase ):
48
53
@classmethod
49
54
def get_script_dir (cls ):
@@ -52,8 +57,7 @@ def get_script_dir(cls):
52
57
53
58
def test_only_blueprint (self ):
54
59
"""Test if the default template of Http trigger in Python
55
- Function app
56
- will return OK
60
+ Function app will not return OK
57
61
"""
58
62
r = self .webhost .request ('GET' , 'default_template' )
59
63
self .assertEqual (r .status_code , 404 )
You can’t perform that action at this time.
0 commit comments