Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions azurefunctions-extensions-base/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers= [
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
Expand Down
1 change: 1 addition & 0 deletions azurefunctions-extensions-bindings-blob/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers= [
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers= [
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers= [
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
Expand Down
1 change: 1 addition & 0 deletions azurefunctions-extensions-connectors/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers= [
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
Expand Down
1 change: 1 addition & 0 deletions azurefunctions-extensions-http-fastapi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers= [
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
Expand Down
2 changes: 1 addition & 1 deletion azurefunctions-extensions-http-fastapi/tests/test_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ async def serve():
serve # Mock the serve method to return a CoroutineMock
)

asyncio.get_event_loop().run_until_complete(self.web_server.serve())
asyncio.run(self.web_server.serve())

config_mock.assert_called_once_with(
self.test_app, host=self.hostname, port=self.port
Expand Down
2 changes: 1 addition & 1 deletion eng/ci/extension-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resources:
pipelines:
- pipeline: officialBuild
project: internal
source: azure-functions-python-extensions.official
source: python-extensions.official
branch: dev
trigger: none

Expand Down
6 changes: 3 additions & 3 deletions eng/templates/jobs/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
eventhub_extension:
EXTENSION_DIRECTORY: 'azurefunctions-extensions-bindings-eventhub'
EXTENSION_NAME: 'EventHub'
# servicebus_extension:
# EXTENSION_DIRECTORY: 'azurefunctions-extensions-bindings-servicebus'
# EXTENSION_NAME: 'ServiceBus'
servicebus_extension:
EXTENSION_DIRECTORY: 'azurefunctions-extensions-bindings-servicebus'
EXTENSION_NAME: 'ServiceBus'
fastapi_extension:
EXTENSION_DIRECTORY: 'azurefunctions-extensions-http-fastapi'
EXTENSION_NAME: 'Http'
Expand Down
16 changes: 11 additions & 5 deletions eng/templates/official/jobs/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ parameters:
- name: python_versions
type: object
default:
# 3.8 is EOL. Don't run tests for it
python39:
PYTHON_VERSION: '3.9'
python310:
PYTHON_VERSION: '3.10'
python311:
Expand All @@ -16,6 +13,8 @@ parameters:
PYTHON_VERSION: '3.12'
python313:
PYTHON_VERSION: '3.13'
python314:
PYTHON_VERSION: '3.14'

jobs:
- job: "BaseTests"
Expand Down Expand Up @@ -153,8 +152,15 @@ jobs:
displayName: "ServiceBus Extension Tests"
dependsOn: []
strategy:
matrix: ${{ parameters.python_versions }}
condition: always()
matrix:
python310:
PYTHON_VERSION: '3.10'
python311:
PYTHON_VERSION: '3.11'
python312:
PYTHON_VERSION: '3.12'
python313:
PYTHON_VERSION: '3.13'
Comment thread
hallvictoria marked this conversation as resolved.
steps:
- task: PipAuthenticate@1
displayName: 'Pip Authenticate'
Expand Down
Loading