├── .azuredevops └── dependabot.yml ├── .ci └── e2e_integration_test │ └── start-e2e.ps1 ├── .coveragerc ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .flake8 ├── .github ├── CONTRIBUTING.md ├── DISCUSSION_TEMPLATE │ └── survey.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ └── general_question.md ├── PULL_REQUEST_TEMPLATE.md ├── linters │ └── tox.ini ├── policies │ └── resourceManagement.yml └── workflows │ ├── linter.yml │ ├── ogf_workflow.yml │ └── pr_title_enforcer.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODEOWNERS ├── LICENSE ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── codecov.yml ├── docs ├── .gitignore ├── Azure.Functions.svg ├── CODE_OF_CONDUCT.md ├── Functions.Fox.Python.png ├── Makefile ├── api.rst ├── conf.py ├── index.rst ├── make.bat ├── sharedmemory_existing.png ├── sharedmemory_new.png └── usage.rst ├── eng ├── ci │ ├── code-mirror.yml │ ├── core-tools-tests.yml │ ├── custom-image-tests.yml │ ├── docker-consumption-tests.yml │ ├── docker-dedicated-tests.yml │ ├── emulator-tests.yml │ ├── integration-tests.yml │ ├── official-build.yml │ ├── public-build.yml │ └── worker-release.yml ├── pack │ ├── Microsoft.Azure.Functions.PythonWorker.targets │ ├── Microsoft.Azure.Functions.V4.PythonWorker.nuspec │ ├── scripts │ │ ├── mac_arm64_deps.sh │ │ ├── nix_arm64_deps.sh │ │ ├── nix_deps.sh │ │ ├── rc_mac_arm64_deps.sh │ │ ├── rc_nix_arm64_deps.sh │ │ ├── rc_nix_deps.sh │ │ ├── rc_win_deps.ps1 │ │ └── win_deps.ps1 │ ├── templates │ │ ├── macos_64_env_gen.yml │ │ ├── nix_arm64_env_gen.yml │ │ ├── nix_env_gen.yml │ │ └── win_env_gen.yml │ └── utils │ │ └── __init__.py ├── scripts │ ├── install-dependencies.sh │ ├── test-extensions.sh │ ├── test-sdk.sh │ └── test-setup.sh └── templates │ ├── jobs │ ├── build.yml │ ├── ci-emulator-tests.yml │ ├── ci-library-unit-tests.yml │ └── ci-unit-tests.yml │ ├── official │ └── jobs │ │ ├── build-artifacts.yml │ │ ├── build-library.yml │ │ ├── ci-core-tools-tests.yml │ │ ├── ci-custom-image-tests.yml │ │ ├── ci-docker-consumption-tests.yml │ │ ├── ci-docker-dedicated-tests.yml │ │ ├── ci-e2e-tests.yml │ │ ├── ci-lc-tests.yml │ │ ├── publish-library-release.yml │ │ └── publish-release.yml │ ├── shared │ ├── build-steps.yml │ ├── github-release-branch.yml │ └── github-release-note.yml │ └── utils │ ├── emulator-variables.yml │ ├── official-variables.yml │ └── variables.yml ├── pytest.ini ├── runtimes ├── v1 │ ├── README.md │ ├── azure_functions_runtime_v1 │ │ ├── __init__.py │ │ ├── bindings │ │ │ ├── context.py │ │ │ ├── datumdef.py │ │ │ ├── generic.py │ │ │ ├── meta.py │ │ │ ├── nullable_converters.py │ │ │ ├── out.py │ │ │ ├── retrycontext.py │ │ │ └── tracecontext.py │ │ ├── functions.py │ │ ├── handle_event.py │ │ ├── loader.py │ │ ├── logging.py │ │ ├── otel.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── app_setting_manager.py │ │ │ ├── constants.py │ │ │ ├── executor.py │ │ │ ├── helpers.py │ │ │ ├── threadpool.py │ │ │ ├── tracing.py │ │ │ ├── typing_inspect.py │ │ │ ├── validators.py │ │ │ └── wrappers.py │ │ └── version.py │ ├── pyproject.toml │ ├── requirements.txt │ └── tests │ │ ├── __init__.py │ │ ├── protos │ │ ├── FunctionRpc_pb2.py │ │ ├── FunctionRpc_pb2_grpc.py │ │ ├── __init__.py │ │ ├── identity │ │ │ ├── ClaimsIdentityRpc_pb2.py │ │ │ ├── ClaimsIdentityRpc_pb2_grpc.py │ │ │ └── __init__.py │ │ └── shared │ │ │ ├── NullableTypes_pb2.py │ │ │ ├── NullableTypes_pb2_grpc.py │ │ │ └── __init__.py │ │ ├── unittests │ │ ├── default_template │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── test_app_setting_manager.py │ │ ├── test_code_quality.py │ │ ├── test_datumdef.py │ │ ├── test_handle_event.py │ │ ├── test_logging.py │ │ ├── test_nullable_converters.py │ │ ├── test_opentelemetry.py │ │ ├── test_rpc_messages.py │ │ ├── test_threadpool.py │ │ ├── test_tracing.py │ │ ├── test_types.py │ │ ├── test_typing_inspect.py │ │ └── test_utilities.py │ │ └── utils │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── mock_classes.py │ │ └── testutils.py └── v2 │ ├── README.md │ ├── azure_functions_runtime │ ├── __init__.py │ ├── bindings │ │ ├── context.py │ │ ├── datumdef.py │ │ ├── generic.py │ │ ├── meta.py │ │ ├── nullable_converters.py │ │ ├── out.py │ │ ├── retrycontext.py │ │ └── tracecontext.py │ ├── functions.py │ ├── handle_event.py │ ├── http_v2.py │ ├── loader.py │ ├── logging.py │ ├── otel.py │ ├── utils │ │ ├── __init__.py │ │ ├── app_setting_manager.py │ │ ├── constants.py │ │ ├── executor.py │ │ ├── helpers.py │ │ ├── threadpool.py │ │ ├── tracing.py │ │ ├── typing_inspect.py │ │ ├── validators.py │ │ └── wrappers.py │ └── version.py │ ├── pyproject.toml │ ├── requirements.txt │ └── tests │ ├── protos │ ├── FunctionRpc_pb2.py │ ├── FunctionRpc_pb2_grpc.py │ ├── __init__.py │ ├── identity │ │ ├── ClaimsIdentityRpc_pb2.py │ │ ├── ClaimsIdentityRpc_pb2_grpc.py │ │ └── __init__.py │ └── shared │ │ ├── NullableTypes_pb2.py │ │ ├── NullableTypes_pb2_grpc.py │ │ └── __init__.py │ ├── unittests │ ├── basic_function │ │ └── function_app.py │ ├── indexing_exception_function │ │ └── function_app.py │ ├── streaming_function │ │ └── function_app.py │ ├── test_app_setting_manager.py │ ├── test_code_quality.py │ ├── test_datumdef.py │ ├── test_deferred_bindings.py │ ├── test_handle_event.py │ ├── test_http_v2.py │ ├── test_logging.py │ ├── test_nullable_converters.py │ ├── test_opentelemetry.py │ ├── test_rpc_messages.py │ ├── test_threadpool.py │ ├── test_tracing.py │ ├── test_types.py │ ├── test_typing_inspect.py │ └── test_utilities.py │ └── utils │ ├── __init__.py │ ├── constants.py │ ├── mock_classes.py │ └── testutils.py ├── setup.cfg └── workers ├── .artifactignore ├── README.md ├── azure_functions_worker ├── __init__.py ├── __main__.py ├── _thirdparty │ ├── __init__.py │ └── typing_inspect.py ├── bindings │ ├── __init__.py │ ├── context.py │ ├── datumdef.py │ ├── generic.py │ ├── meta.py │ ├── nullable_converters.py │ ├── out.py │ ├── retrycontext.py │ ├── rpcexception.py │ ├── shared_memory_data_transfer │ │ ├── __init__.py │ │ ├── file_accessor.py │ │ ├── file_accessor_factory.py │ │ ├── file_accessor_unix.py │ │ ├── file_accessor_windows.py │ │ ├── shared_memory_constants.py │ │ ├── shared_memory_exception.py │ │ ├── shared_memory_manager.py │ │ ├── shared_memory_map.py │ │ └── shared_memory_metadata.py │ └── tracecontext.py ├── constants.py ├── dispatcher.py ├── extension.py ├── functions.py ├── http_v2.py ├── loader.py ├── logging.py ├── main.py ├── protos │ ├── .gitignore │ ├── __init__.py │ ├── _src │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ └── proto │ │ │ ├── FunctionRpc.proto │ │ │ ├── identity │ │ │ └── ClaimsIdentityRpc.proto │ │ │ └── shared │ │ │ └── NullableTypes.proto │ ├── identity │ │ └── __init__.py │ └── shared │ │ └── __init__.py ├── utils │ ├── __init__.py │ ├── app_setting_manager.py │ ├── common.py │ ├── dependency.py │ ├── tracing.py │ └── wrappers.py └── version.py ├── proxy_worker ├── __init__.py ├── __main__.py ├── dispatcher.py ├── logging.py ├── protos │ ├── .gitignore │ ├── __init__.py │ ├── _src │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ └── proto │ │ │ ├── FunctionRpc.proto │ │ │ ├── identity │ │ │ └── ClaimsIdentityRpc.proto │ │ │ └── shared │ │ │ └── NullableTypes.proto │ ├── identity │ │ └── __init__.py │ └── shared │ │ └── __init__.py ├── start_worker.py ├── utils │ ├── __init__.py │ ├── common.py │ ├── constants.py │ └── dependency.py └── version.py ├── pyproject.toml ├── python ├── prodV4 │ ├── worker.config.json │ └── worker.py ├── proxyV4 │ └── worker.py └── test │ ├── worker.config.json │ └── worker.py ├── requirements.txt └── tests ├── .gitignore ├── __init__.py ├── consumption_tests ├── function_app_zips │ ├── CommonLibraries.zip │ ├── EnableDebugLogging.zip │ ├── HttpNoAuth.zip │ ├── HttpV2FastApiStreaming.zip │ ├── OOMError.zip │ ├── Opencensus.zip │ └── PinningFunctions.zip └── test_linux_consumption.py ├── emulator_tests ├── blob_functions │ ├── blob_functions_sdk │ │ └── function_app.py │ ├── blob_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ ├── blob_trigger │ │ ├── function.json │ │ └── main.py │ ├── get_blob_as_bytes │ │ ├── function.json │ │ └── main.py │ ├── get_blob_as_bytes_return_http_response │ │ ├── function.json │ │ └── main.py │ ├── get_blob_as_bytes_stream_return_http_response │ │ ├── function.json │ │ └── main.py │ ├── get_blob_as_str │ │ ├── function.json │ │ └── main.py │ ├── get_blob_as_str_return_http_response │ │ ├── function.json │ │ └── main.py │ ├── get_blob_bytes │ │ ├── function.json │ │ └── main.py │ ├── get_blob_filelike │ │ ├── function.json │ │ └── main.py │ ├── get_blob_return │ │ ├── function.json │ │ └── main.py │ ├── get_blob_str │ │ ├── function.json │ │ └── main.py │ ├── get_blob_triggered │ │ ├── function.json │ │ └── main.py │ ├── put_blob_as_bytes_return_http_response │ │ ├── function.json │ │ └── main.py │ ├── put_blob_as_str_return_http_response │ │ ├── function.json │ │ └── main.py │ ├── put_blob_bytes │ │ ├── function.json │ │ └── main.py │ ├── put_blob_filelike │ │ ├── function.json │ │ └── main.py │ ├── put_blob_return │ │ ├── function.json │ │ └── main.py │ ├── put_blob_str │ │ ├── function.json │ │ └── main.py │ ├── put_blob_trigger │ │ ├── function.json │ │ └── main.py │ └── put_get_multiple_blobs_as_bytes_return_http_response │ │ ├── function.json │ │ └── main.py ├── cosmosdb_functions │ ├── cosmosdb_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ ├── cosmosdb_input │ │ ├── __init__.py │ │ └── function.json │ ├── cosmosdb_trigger │ │ ├── __init__.py │ │ └── function.json │ ├── cosmosdb_v3_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ ├── get_cosmosdb_triggered │ │ ├── function.json │ │ └── main.py │ └── put_document │ │ ├── __init__.py │ │ └── function.json ├── eventhub_batch_functions │ ├── eventhub_batch_functions_stein │ │ └── function_app.py │ ├── eventhub_multiple │ │ ├── __init__.py │ │ └── function.json │ ├── eventhub_output_batch │ │ ├── __init__.py │ │ └── function.json │ ├── get_eventhub_batch_triggered │ │ ├── __init__.py │ │ └── function.json │ ├── get_metadata_batch_triggered │ │ ├── __init__.py │ │ └── function.json │ ├── metadata_multiple │ │ ├── __init__.py │ │ └── function.json │ └── metadata_output_batch │ │ ├── __init__.py │ │ └── function.json ├── eventhub_functions │ ├── eventhub_functions_sdk │ │ └── function_app.py │ ├── eventhub_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ ├── eventhub_output │ │ ├── __init__.py │ │ └── function.json │ ├── eventhub_trigger │ │ ├── __init__.py │ │ └── function.json │ ├── get_eventhub_triggered │ │ ├── function.json │ │ └── main.py │ ├── get_metadata_triggered │ │ ├── __init__.py │ │ └── function.json │ ├── metadata_output │ │ ├── __init__.py │ │ └── function.json │ └── metadata_trigger │ │ ├── __init__.py │ │ └── function.json ├── generic_functions │ ├── generic_functions_stein │ │ └── function_app.py │ ├── return_bool │ │ ├── function.json │ │ └── main.py │ ├── return_bytes │ │ ├── function.json │ │ └── main.py │ ├── return_dict │ │ ├── function.json │ │ └── main.py │ ├── return_double │ │ ├── function.json │ │ └── main.py │ ├── return_int │ │ ├── function.json │ │ └── main.py │ ├── return_list │ │ ├── function.json │ │ └── main.py │ ├── return_none │ │ ├── function.json │ │ └── main.py │ ├── return_none_no_type_hint │ │ ├── function.json │ │ └── main.py │ ├── return_not_processed_last │ │ ├── __init__.py │ │ └── function.json │ ├── return_processed_last │ │ ├── __init__.py │ │ └── function.json │ ├── return_string │ │ ├── function.json │ │ └── main.py │ └── table_out_binding │ │ ├── __init__.py │ │ └── function.json ├── queue_functions │ ├── get_queue_blob │ │ ├── function.json │ │ └── main.py │ ├── get_queue_blob_message_return │ │ ├── function.json │ │ └── main.py │ ├── get_queue_blob_return │ │ ├── function.json │ │ └── main.py │ ├── get_queue_untyped_blob_return │ │ ├── function.json │ │ └── main.py │ ├── put_queue │ │ ├── function.json │ │ └── main.py │ ├── put_queue_message_return │ │ ├── function.json │ │ └── main.py │ ├── put_queue_multiple_out │ │ ├── function.json │ │ └── main.py │ ├── put_queue_return │ │ ├── function.json │ │ └── main.py │ ├── put_queue_return_multiple │ │ ├── function.json │ │ └── main.py │ ├── put_queue_untyped_return │ │ ├── function.json │ │ └── main.py │ ├── queue_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ ├── queue_trigger │ │ ├── function.json │ │ └── main.py │ ├── queue_trigger_message_return │ │ ├── function.json │ │ └── main.py │ ├── queue_trigger_return │ │ ├── function.json │ │ └── main.py │ ├── queue_trigger_return_multiple │ │ ├── function.json │ │ └── main.py │ └── queue_trigger_untyped │ │ ├── function.json │ │ └── main.py ├── servicebus_functions │ ├── get_servicebus_triggered │ │ ├── __init__.py │ │ └── function.json │ ├── put_message │ │ ├── __init__.py │ │ └── function.json │ ├── servicebus_functions_sdk │ │ └── function_app.py │ ├── servicebus_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ └── servicebus_trigger │ │ ├── __init__.py │ │ └── function.json ├── table_functions │ ├── table_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ ├── table_in_binding │ │ ├── __init__.py │ │ └── function.json │ └── table_out_binding │ │ ├── __init__.py │ │ └── function.json ├── test_blob_functions.py ├── test_cosmosdb_functions.py ├── test_deferred_bindings_blob_functions.py ├── test_eventhub_batch_functions.py ├── test_eventhub_functions.py ├── test_generic_functions.py ├── test_queue_functions.py ├── test_servicebus_functions.py ├── test_table_functions.py └── utils │ ├── eventhub │ ├── config.json │ └── docker-compose.yml │ └── servicebus │ ├── config.json │ └── docker-compose.yml ├── endtoend ├── blueprint_functions │ ├── blueprint_different_dir │ │ ├── blueprint_directory │ │ │ └── blueprint.py │ │ └── function_app.py │ ├── functions_in_blueprint_only │ │ ├── blueprint.py │ │ └── function_app.py │ ├── functions_in_both_blueprint_functionapp │ │ ├── blueprint.py │ │ └── function_app.py │ ├── multiple_function_registers │ │ └── function_app.py │ └── only_blueprint │ │ └── function_app.py ├── dependency_isolation_functions │ ├── .python_packages_azf_newer_version │ │ └── lib │ │ │ └── site-packages │ │ │ └── azure │ │ │ └── functions │ │ │ ├── __init__.py │ │ │ ├── _abc.py │ │ │ ├── _http.py │ │ │ ├── _thirdparty │ │ │ ├── __init__.py │ │ │ ├── typing_inspect.py │ │ │ └── werkzeug │ │ │ │ ├── datastructures.py │ │ │ │ ├── formparser.py │ │ │ │ └── http.py │ │ │ ├── _utils.py │ │ │ ├── http.py │ │ │ └── meta.py │ ├── .python_packages_azf_older_version │ │ └── lib │ │ │ └── site-packages │ │ │ └── azure │ │ │ └── functions │ │ │ ├── __init__.py │ │ │ ├── _abc.py │ │ │ ├── _http.py │ │ │ ├── _thirdparty │ │ │ ├── __init__.py │ │ │ ├── typing_inspect.py │ │ │ └── werkzeug │ │ │ │ ├── datastructures.py │ │ │ │ ├── formparser.py │ │ │ │ └── http.py │ │ │ ├── _utils.py │ │ │ ├── http.py │ │ │ └── meta.py │ ├── .python_packages_grpc_protobuf │ │ └── lib │ │ │ └── site-packages │ │ │ ├── google │ │ │ └── protobuf │ │ │ │ └── __init__.py │ │ │ └── grpc │ │ │ └── __init__.py │ └── report_dependencies │ │ ├── __init__.py │ │ └── function.json ├── durable_functions │ ├── DurableFunctionsHttpStart │ │ ├── __init__.py │ │ └── function.json │ ├── DurableFunctionsOrchestrator │ │ ├── __init__.py │ │ └── function.json │ ├── Hello │ │ ├── __init__.py │ │ └── function.json │ └── durable_functions_stein │ │ └── function_app.py ├── eventgrid_functions │ ├── eventgrid_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ ├── eventgrid_output_binding │ │ ├── __init__.py │ │ └── function.json │ ├── eventgrid_output_binding_message_to_blobstore │ │ ├── __init__.py │ │ └── function.json │ ├── eventgrid_output_binding_success │ │ ├── __init__.py │ │ └── function.json │ ├── eventgrid_trigger │ │ ├── __init__.py │ │ └── function.json │ └── get_eventgrid_triggered │ │ ├── function.json │ │ └── main.py ├── http_functions │ ├── common_libs_functions │ │ ├── common_libs_functions_stein │ │ │ └── function_app.py │ │ ├── dotenv_func │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── numpy_func │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── opencv_func │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── pandas_func │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── plotly_func │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── requests_func │ │ │ ├── __init__.py │ │ │ └── function.json │ │ └── sklearn_func │ │ │ ├── __init__.py │ │ │ └── function.json │ ├── default_template │ │ ├── __init__.py │ │ └── function.json │ ├── http_func │ │ ├── __init__.py │ │ └── function.json │ ├── http_functions_stein │ │ ├── file_name │ │ │ └── main.py │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ └── user_thread_logging │ │ ├── async_thread │ │ ├── __init__.py │ │ └── function.json │ │ ├── async_thread_pool_executor │ │ ├── __init__.py │ │ └── function.json │ │ ├── thread │ │ ├── __init__.py │ │ └── function.json │ │ └── thread_pool_executor │ │ ├── __init__.py │ │ └── function.json ├── http_functions_v2 │ └── fastapi │ │ └── function_app.py ├── retry_policy_functions │ ├── exponential_strategy │ │ └── function_app.py │ └── fixed_strategy │ │ └── function_app.py ├── snake_case_functions │ └── function_app.py ├── sql_functions │ ├── sql_functions_stein │ │ ├── function_app.py │ │ └── generic │ │ │ └── function_app.py │ ├── sql_input │ │ ├── __init__.py │ │ └── function.json │ ├── sql_input2 │ │ ├── __init__.py │ │ └── function.json │ ├── sql_output │ │ ├── __init__.py │ │ └── function.json │ └── sql_trigger │ │ ├── __init__.py │ │ └── function.json ├── test_blueprint_functions.py ├── test_dependency_isolation_functions.py ├── test_durable_functions.py ├── test_eol_log.py ├── test_eventgrid_functions.py ├── test_file_name_functions.py ├── test_http_functions.py ├── test_http_v2.py ├── test_retry_policy_functions.py ├── test_snake_case_functions.py ├── test_sql_functions.py ├── test_third_party_http_functions.py ├── test_threadpool_thread_count_functions.py ├── test_timer_functions.py ├── test_warmup_functions.py ├── test_worker_process_count_functions.py ├── third_party_http_functions │ └── stein │ │ ├── asgi_function │ │ └── function_app.py │ │ └── wsgi_function │ │ └── function_app.py ├── timer_functions │ ├── timer_func │ │ ├── __init__.py │ │ └── function.json │ └── timer_functions_stein │ │ └── function_app.py └── warmup_functions │ ├── warmup │ ├── __init__.py │ └── function.json │ └── warmup_functions_stein │ └── function_app.py ├── test_setup.py ├── unittest_proxy ├── test_dependency.py ├── test_dispatcher.py └── test_utilities.py ├── unittests ├── azure_namespace_import │ ├── azure_namespace_import.py │ ├── namespace_location_a │ │ └── azure │ │ │ └── module_a │ │ │ └── __init__.py │ └── test_azure_namespace_import.sh ├── broken_functions │ ├── README.md │ ├── bad_out_annotation │ │ ├── function.json │ │ └── main.py │ ├── import_error │ │ ├── function.json │ │ └── main.py │ ├── inout_param │ │ ├── function.json │ │ └── main.py │ ├── invalid_app_stein │ │ └── function_app.py │ ├── invalid_context_param │ │ ├── function.json │ │ └── main.py │ ├── invalid_datatype │ │ ├── function.json │ │ └── main.py │ ├── invalid_http_trigger_anno │ │ ├── function.json │ │ └── main.py │ ├── invalid_in_anno │ │ ├── function.json │ │ └── main.py │ ├── invalid_in_anno_non_type │ │ ├── function.json │ │ └── main.py │ ├── invalid_out_anno │ │ ├── function.json │ │ └── main.py │ ├── invalid_return_anno │ │ ├── function.json │ │ └── main.py │ ├── invalid_return_anno_non_type │ │ ├── function.json │ │ └── main.py │ ├── invalid_stein │ │ └── function_app.py │ ├── missing_json_param │ │ ├── function.json │ │ └── main.py │ ├── missing_module │ │ ├── function.json │ │ └── main.py │ ├── missing_py_param │ │ ├── function.json │ │ └── main.py │ ├── module_not_found_error │ │ ├── function.json │ │ └── main.py │ ├── return_param_in │ │ ├── function.json │ │ └── main.py │ ├── syntax_error │ │ ├── function.json │ │ └── main.py │ ├── wrong_binding_dir │ │ ├── function.json │ │ └── main.py │ └── wrong_param_dir │ │ ├── function.json │ │ └── main.py ├── deferred_bindings_functions │ ├── deferred_bindings_disabled │ │ └── function_app.py │ ├── deferred_bindings_enabled │ │ └── function_app.py │ └── deferred_bindings_enabled_dual │ │ └── function_app.py ├── dispatcher_functions │ ├── dispatcher_functions_stein │ │ └── function_app.py │ ├── http_v2 │ │ └── fastapi │ │ │ └── function_app.py │ ├── show_context │ │ ├── __init__.py │ │ └── function.json │ └── show_context_async │ │ ├── __init__.py │ │ └── function.json ├── durable_functions │ ├── activity_trigger │ │ ├── function.json │ │ └── main.py │ ├── activity_trigger_dict │ │ ├── function.json │ │ └── main.py │ ├── activity_trigger_int_to_float │ │ ├── function.json │ │ └── main.py │ ├── activity_trigger_no_anno │ │ ├── function.json │ │ └── main.py │ └── orchestration_trigger │ │ ├── function.json │ │ └── main.py ├── eventhub_mock_functions │ ├── eventhub_cardinality_many │ │ ├── __init__.py │ │ └── function.json │ ├── eventhub_cardinality_many_bad_anno │ │ ├── __init__.py │ │ └── function.json │ ├── eventhub_cardinality_one │ │ ├── __init__.py │ │ └── function.json │ ├── eventhub_cardinality_one_bad_anno │ │ ├── __init__.py │ │ └── function.json │ └── eventhub_trigger_iot │ │ ├── __init__.py │ │ └── function.json ├── file_name_functions │ ├── default_file_name │ │ └── function_app.py │ ├── invalid_file_name │ │ └── main │ └── new_file_name │ │ └── test.py ├── generic_functions │ ├── foobar_as_bytes │ │ ├── function.json │ │ └── main.py │ ├── foobar_as_bytes_no_anno │ │ ├── function.json │ │ └── main.py │ ├── foobar_as_none │ │ ├── function.json │ │ └── main.py │ ├── foobar_as_str │ │ ├── function.json │ │ └── main.py │ ├── foobar_as_str_no_anno │ │ ├── function.json │ │ └── main.py │ ├── foobar_implicit_output │ │ ├── function.json │ │ └── main.py │ ├── foobar_implicit_output_exemption │ │ ├── function.json │ │ └── main.py │ ├── foobar_nil_data │ │ ├── function.json │ │ └── main.py │ ├── foobar_return_bool │ │ ├── function.json │ │ └── main.py │ ├── foobar_return_dict │ │ ├── function.json │ │ └── main.py │ ├── foobar_return_double │ │ ├── function.json │ │ └── main.py │ ├── foobar_return_int │ │ ├── function.json │ │ └── main.py │ ├── foobar_return_list │ │ ├── function.json │ │ └── main.py │ └── foobar_with_no_datatype │ │ ├── function.json │ │ └── main.py ├── http_functions │ ├── accept_json │ │ ├── function.json │ │ └── main.py │ ├── async_logging │ │ ├── function.json │ │ └── main.py │ ├── async_return_str │ │ ├── function.json │ │ └── main.py │ ├── create_task_with_context │ │ ├── function.json │ │ └── main.py │ ├── create_task_without_context │ │ ├── function.json │ │ └── main.py │ ├── debug_logging │ │ ├── function.json │ │ └── main.py │ ├── hijack_current_event_loop │ │ ├── function.json │ │ └── main.py │ ├── http_functions_stein │ │ └── function_app.py │ ├── http_v2_functions │ │ └── fastapi │ │ │ └── function_app.py │ ├── multiple_set_cookie_resp_headers │ │ ├── function.json │ │ └── main.py │ ├── no_return │ │ ├── function.json │ │ └── main.py │ ├── no_return_returns │ │ ├── function.json │ │ └── main.py │ ├── print_logging │ │ ├── function.json │ │ └── main.py │ ├── raw_body_bytes │ │ ├── function.json │ │ └── main.py │ ├── remapped_context │ │ ├── function.json │ │ └── main.py │ ├── response_cookie_header_nullable_bool_err │ │ ├── function.json │ │ └── main.py │ ├── response_cookie_header_nullable_double_err │ │ ├── function.json │ │ └── main.py │ ├── response_cookie_header_nullable_timestamp_err │ │ ├── function.json │ │ └── main.py │ ├── return_bytes │ │ ├── function.json │ │ └── main.py │ ├── return_context │ │ ├── function.json │ │ └── main.py │ ├── return_http │ │ ├── function.json │ │ └── main.py │ ├── return_http_404 │ │ ├── function.json │ │ └── main.py │ ├── return_http_auth_admin │ │ ├── function.json │ │ └── main.py │ ├── return_http_no_body │ │ ├── function.json │ │ └── main.py │ ├── return_http_redirect │ │ ├── function.json │ │ └── main.py │ ├── return_out │ │ ├── function.json │ │ └── main.py │ ├── return_request │ │ ├── function.json │ │ └── main.py │ ├── return_route_params │ │ ├── function.json │ │ └── main.py │ ├── return_str │ │ ├── function.json │ │ └── main.py │ ├── set_cookie_resp_header_default_values │ │ ├── function.json │ │ └── main.py │ ├── set_cookie_resp_header_empty │ │ ├── function.json │ │ └── main.py │ ├── sync_logging │ │ ├── function.json │ │ └── main.py │ ├── unhandled_error │ │ ├── function.json │ │ └── main.py │ ├── unhandled_unserializable_error │ │ ├── function.json │ │ └── main.py │ ├── unhandled_urllib_error │ │ ├── function.json │ │ └── main.py │ └── user_event_loop │ │ ├── function.json │ │ └── main.py ├── load_functions │ ├── absolute_thirdparty │ │ ├── function.json │ │ └── main.py │ ├── entrypoint │ │ ├── function.json │ │ └── main.py │ ├── implicit_import │ │ ├── function.json │ │ └── main.py │ ├── load_outside_main │ │ ├── function.json │ │ └── main.py │ ├── module_not_found │ │ ├── function.json │ │ └── main.py │ ├── name_collision │ │ ├── function.json │ │ └── main.py │ ├── name_collision_app_import │ │ ├── function.json │ │ └── main.py │ ├── no_script_file │ │ ├── function.json │ │ └── main.py │ ├── outside_main_code_in_init │ │ ├── __init__.py │ │ ├── count.py │ │ └── function.json │ ├── outside_main_code_in_main │ │ ├── count.py │ │ ├── function.json │ │ └── main.py │ ├── parentmodule │ │ ├── function.json │ │ ├── module.py │ │ └── sub_module │ │ │ ├── __init__.py │ │ │ └── main.py │ ├── pytest │ │ └── __init__.py │ ├── relimport │ │ ├── function.json │ │ ├── main.py │ │ └── relative.py │ ├── simple │ │ ├── function.json │ │ └── main.py │ ├── stub_http_trigger │ │ ├── __init__.py │ │ ├── function.json │ │ └── stub_tools.py │ ├── subdir │ │ ├── function.json │ │ └── sub │ │ │ └── main.py │ └── submodule │ │ ├── function.json │ │ ├── main.py │ │ └── sub_module │ │ ├── __init__.py │ │ └── module.py ├── log_filtering_functions │ ├── debug_logging │ │ ├── function.json │ │ └── main.py │ ├── debug_user_logging │ │ ├── function.json │ │ └── main.py │ ├── sdk_logging │ │ ├── __init__.py │ │ └── function.json │ └── sdk_submodule_logging │ │ ├── __init__.py │ │ └── function.json ├── path_import │ ├── path_import.py │ └── test_path_import.sh ├── resources │ ├── customer_deps_path │ │ ├── azure │ │ │ ├── __init__.py │ │ │ └── functions │ │ │ │ └── __init__.py │ │ ├── common_module │ │ │ └── __init__.py │ │ ├── common_namespace │ │ │ ├── __init__.py │ │ │ └── nested_module │ │ │ │ └── __init__.py │ │ └── readme.md │ ├── customer_func_path │ │ ├── HttpTrigger │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── common_module │ │ │ └── __init__.py │ │ ├── func_specific_module │ │ │ └── __init__.py │ │ ├── host.json │ │ └── requirements.txt │ ├── functions.png │ ├── mock_azure_functions │ │ ├── azure │ │ │ ├── __init__.py │ │ │ └── functions │ │ │ │ └── __init__.py │ │ └── readme.md │ └── worker_deps_path │ │ ├── azure │ │ ├── __init__.py │ │ └── functions │ │ │ └── __init__.py │ │ ├── common_module │ │ └── __init__.py │ │ ├── common_namespace │ │ ├── __init__.py │ │ └── nested_module │ │ │ └── __init__.py │ │ └── readme.md ├── test-binding │ ├── foo │ │ ├── __init__.py │ │ └── binding.py │ ├── functions │ │ └── foo │ │ │ ├── function.json │ │ │ └── main.py │ └── setup.py ├── test_app_setting_manager.py ├── test_broken_functions.py ├── test_code_quality.py ├── test_datumref.py ├── test_deferred_bindings.py ├── test_dispatcher.py ├── test_enable_debug_logging_functions.py ├── test_extension.py ├── test_file_accessor.py ├── test_file_accessor_factory.py ├── test_functions_registry.py ├── test_http_functions.py ├── test_http_functions_v2.py ├── test_http_v2.py ├── test_invalid_stein.py ├── test_loader.py ├── test_log_filtering_functions.py ├── test_logging.py ├── test_main.py ├── test_mock_blob_shared_memory_functions.py ├── test_mock_durable_functions.py ├── test_mock_eventhub_functions.py ├── test_mock_generic_functions.py ├── test_mock_http_functions.py ├── test_mock_log_filtering_functions.py ├── test_mock_timer_functions.py ├── test_nullable_converters.py ├── test_opentelemetry.py ├── test_rpc_messages.py ├── test_script_file_name.py ├── test_shared_memory_manager.py ├── test_shared_memory_map.py ├── test_third_party_http_functions.py ├── test_tracing.py ├── test_types.py ├── test_typing_inspect.py ├── test_utilities.py ├── test_utilities_dependency.py ├── third_party_http_functions │ └── stein │ │ ├── asgi_function │ │ └── function_app.py │ │ └── wsgi_function │ │ └── function_app.py └── timer_functions │ ├── return_pastdue │ ├── function.json │ └── main.py │ └── user_event_loop_timer │ ├── function.json │ └── main.py └── utils ├── __init__.py ├── constants.py ├── testutils.py ├── testutils_docker.py └── testutils_lc.py /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.ci/e2e_integration_test/start-e2e.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.ci/e2e_integration_test/start-e2e.ps1 -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.coveragerc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/survey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/DISCUSSION_TEMPLATE/survey.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/ISSUE_TEMPLATE/general_question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/linters/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/linters/tox.ini -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/ogf_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/workflows/ogf_workflow.yml -------------------------------------------------------------------------------- /.github/workflows/pr_title_enforcer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.github/workflows/pr_title_enforcer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "tests/utils/" 3 | 4 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _templates 3 | -------------------------------------------------------------------------------- /docs/Azure.Functions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/Azure.Functions.svg -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/Functions.Fox.Python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/Functions.Fox.Python.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/sharedmemory_existing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/sharedmemory_existing.png -------------------------------------------------------------------------------- /docs/sharedmemory_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/sharedmemory_new.png -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /eng/ci/code-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/code-mirror.yml -------------------------------------------------------------------------------- /eng/ci/core-tools-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/core-tools-tests.yml -------------------------------------------------------------------------------- /eng/ci/custom-image-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/custom-image-tests.yml -------------------------------------------------------------------------------- /eng/ci/docker-consumption-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/docker-consumption-tests.yml -------------------------------------------------------------------------------- /eng/ci/docker-dedicated-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/docker-dedicated-tests.yml -------------------------------------------------------------------------------- /eng/ci/emulator-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/emulator-tests.yml -------------------------------------------------------------------------------- /eng/ci/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/integration-tests.yml -------------------------------------------------------------------------------- /eng/ci/official-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/official-build.yml -------------------------------------------------------------------------------- /eng/ci/public-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/public-build.yml -------------------------------------------------------------------------------- /eng/ci/worker-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/ci/worker-release.yml -------------------------------------------------------------------------------- /eng/pack/Microsoft.Azure.Functions.PythonWorker.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/Microsoft.Azure.Functions.PythonWorker.targets -------------------------------------------------------------------------------- /eng/pack/Microsoft.Azure.Functions.V4.PythonWorker.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/Microsoft.Azure.Functions.V4.PythonWorker.nuspec -------------------------------------------------------------------------------- /eng/pack/scripts/mac_arm64_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/scripts/mac_arm64_deps.sh -------------------------------------------------------------------------------- /eng/pack/scripts/nix_arm64_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/scripts/nix_arm64_deps.sh -------------------------------------------------------------------------------- /eng/pack/scripts/nix_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/scripts/nix_deps.sh -------------------------------------------------------------------------------- /eng/pack/scripts/rc_mac_arm64_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/scripts/rc_mac_arm64_deps.sh -------------------------------------------------------------------------------- /eng/pack/scripts/rc_nix_arm64_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/scripts/rc_nix_arm64_deps.sh -------------------------------------------------------------------------------- /eng/pack/scripts/rc_nix_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/scripts/rc_nix_deps.sh -------------------------------------------------------------------------------- /eng/pack/scripts/rc_win_deps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/scripts/rc_win_deps.ps1 -------------------------------------------------------------------------------- /eng/pack/scripts/win_deps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/scripts/win_deps.ps1 -------------------------------------------------------------------------------- /eng/pack/templates/macos_64_env_gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/templates/macos_64_env_gen.yml -------------------------------------------------------------------------------- /eng/pack/templates/nix_arm64_env_gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/templates/nix_arm64_env_gen.yml -------------------------------------------------------------------------------- /eng/pack/templates/nix_env_gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/templates/nix_env_gen.yml -------------------------------------------------------------------------------- /eng/pack/templates/win_env_gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/templates/win_env_gen.yml -------------------------------------------------------------------------------- /eng/pack/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/pack/utils/__init__.py -------------------------------------------------------------------------------- /eng/scripts/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/scripts/install-dependencies.sh -------------------------------------------------------------------------------- /eng/scripts/test-extensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/scripts/test-extensions.sh -------------------------------------------------------------------------------- /eng/scripts/test-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/scripts/test-sdk.sh -------------------------------------------------------------------------------- /eng/scripts/test-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/scripts/test-setup.sh -------------------------------------------------------------------------------- /eng/templates/jobs/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/jobs/build.yml -------------------------------------------------------------------------------- /eng/templates/jobs/ci-emulator-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/jobs/ci-emulator-tests.yml -------------------------------------------------------------------------------- /eng/templates/jobs/ci-library-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/jobs/ci-library-unit-tests.yml -------------------------------------------------------------------------------- /eng/templates/jobs/ci-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/jobs/ci-unit-tests.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/build-artifacts.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/build-library.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/build-library.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/ci-core-tools-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/ci-core-tools-tests.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/ci-custom-image-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/ci-custom-image-tests.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/ci-docker-consumption-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/ci-docker-consumption-tests.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/ci-docker-dedicated-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/ci-docker-dedicated-tests.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/ci-e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/ci-e2e-tests.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/ci-lc-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/ci-lc-tests.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/publish-library-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/publish-library-release.yml -------------------------------------------------------------------------------- /eng/templates/official/jobs/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/official/jobs/publish-release.yml -------------------------------------------------------------------------------- /eng/templates/shared/build-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/shared/build-steps.yml -------------------------------------------------------------------------------- /eng/templates/shared/github-release-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/shared/github-release-branch.yml -------------------------------------------------------------------------------- /eng/templates/shared/github-release-note.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/shared/github-release-note.yml -------------------------------------------------------------------------------- /eng/templates/utils/emulator-variables.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | - group: python-emulator-resources -------------------------------------------------------------------------------- /eng/templates/utils/official-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/utils/official-variables.yml -------------------------------------------------------------------------------- /eng/templates/utils/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/eng/templates/utils/variables.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/pytest.ini -------------------------------------------------------------------------------- /runtimes/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/README.md -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/__init__.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/bindings/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/bindings/context.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/bindings/datumdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/bindings/datumdef.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/bindings/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/bindings/generic.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/bindings/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/bindings/meta.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/bindings/nullable_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/bindings/nullable_converters.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/bindings/out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/bindings/out.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/bindings/retrycontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/bindings/retrycontext.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/bindings/tracecontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/bindings/tracecontext.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/functions.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/handle_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/handle_event.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/loader.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/logging.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/otel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/otel.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/__init__.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/app_setting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/app_setting_manager.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/constants.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/executor.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/helpers.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/threadpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/threadpool.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/tracing.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/typing_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/typing_inspect.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/validators.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/utils/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/utils/wrappers.py -------------------------------------------------------------------------------- /runtimes/v1/azure_functions_runtime_v1/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/azure_functions_runtime_v1/version.py -------------------------------------------------------------------------------- /runtimes/v1/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/pyproject.toml -------------------------------------------------------------------------------- /runtimes/v1/requirements.txt: -------------------------------------------------------------------------------- 1 | # Required dependencies listed in pyproject.toml 2 | . 3 | -------------------------------------------------------------------------------- /runtimes/v1/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/__init__.py -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/FunctionRpc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/protos/FunctionRpc_pb2.py -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/FunctionRpc_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/protos/FunctionRpc_pb2_grpc.py -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/protos/__init__.py -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/identity/ClaimsIdentityRpc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/protos/identity/ClaimsIdentityRpc_pb2.py -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/identity/ClaimsIdentityRpc_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/protos/identity/ClaimsIdentityRpc_pb2_grpc.py -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/shared/NullableTypes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/protos/shared/NullableTypes_pb2.py -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/shared/NullableTypes_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/protos/shared/NullableTypes_pb2_grpc.py -------------------------------------------------------------------------------- /runtimes/v1/tests/protos/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/default_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/default_template/__init__.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/default_template/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/default_template/function.json -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_app_setting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_app_setting_manager.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_code_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_code_quality.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_datumdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_datumdef.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_handle_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_handle_event.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_logging.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_nullable_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_nullable_converters.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_opentelemetry.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_rpc_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_rpc_messages.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_threadpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_threadpool.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_tracing.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_types.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_typing_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_typing_inspect.py -------------------------------------------------------------------------------- /runtimes/v1/tests/unittests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/unittests/test_utilities.py -------------------------------------------------------------------------------- /runtimes/v1/tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/utils/__init__.py -------------------------------------------------------------------------------- /runtimes/v1/tests/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/utils/constants.py -------------------------------------------------------------------------------- /runtimes/v1/tests/utils/mock_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/utils/mock_classes.py -------------------------------------------------------------------------------- /runtimes/v1/tests/utils/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v1/tests/utils/testutils.py -------------------------------------------------------------------------------- /runtimes/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/README.md -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/__init__.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/bindings/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/bindings/context.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/bindings/datumdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/bindings/datumdef.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/bindings/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/bindings/generic.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/bindings/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/bindings/meta.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/bindings/nullable_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/bindings/nullable_converters.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/bindings/out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/bindings/out.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/bindings/retrycontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/bindings/retrycontext.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/bindings/tracecontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/bindings/tracecontext.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/functions.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/handle_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/handle_event.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/http_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/http_v2.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/loader.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/logging.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/otel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/otel.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/__init__.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/app_setting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/app_setting_manager.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/constants.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/executor.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/helpers.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/threadpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/threadpool.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/tracing.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/typing_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/typing_inspect.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/validators.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/utils/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/utils/wrappers.py -------------------------------------------------------------------------------- /runtimes/v2/azure_functions_runtime/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/azure_functions_runtime/version.py -------------------------------------------------------------------------------- /runtimes/v2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/pyproject.toml -------------------------------------------------------------------------------- /runtimes/v2/requirements.txt: -------------------------------------------------------------------------------- 1 | # Required dependencies listed in pyproject.toml 2 | . 3 | -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/FunctionRpc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/protos/FunctionRpc_pb2.py -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/FunctionRpc_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/protos/FunctionRpc_pb2_grpc.py -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/protos/__init__.py -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/identity/ClaimsIdentityRpc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/protos/identity/ClaimsIdentityRpc_pb2.py -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/identity/ClaimsIdentityRpc_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/protos/identity/ClaimsIdentityRpc_pb2_grpc.py -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/shared/NullableTypes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/protos/shared/NullableTypes_pb2.py -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/shared/NullableTypes_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/protos/shared/NullableTypes_pb2_grpc.py -------------------------------------------------------------------------------- /runtimes/v2/tests/protos/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/basic_function/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/basic_function/function_app.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/indexing_exception_function/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/indexing_exception_function/function_app.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/streaming_function/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/streaming_function/function_app.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_app_setting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_app_setting_manager.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_code_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_code_quality.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_datumdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_datumdef.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_deferred_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_deferred_bindings.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_handle_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_handle_event.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_http_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_http_v2.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_logging.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_nullable_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_nullable_converters.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_opentelemetry.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_rpc_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_rpc_messages.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_threadpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_threadpool.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_tracing.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_types.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_typing_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_typing_inspect.py -------------------------------------------------------------------------------- /runtimes/v2/tests/unittests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/unittests/test_utilities.py -------------------------------------------------------------------------------- /runtimes/v2/tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/utils/__init__.py -------------------------------------------------------------------------------- /runtimes/v2/tests/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/utils/constants.py -------------------------------------------------------------------------------- /runtimes/v2/tests/utils/mock_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/utils/mock_classes.py -------------------------------------------------------------------------------- /runtimes/v2/tests/utils/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/runtimes/v2/tests/utils/testutils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/setup.cfg -------------------------------------------------------------------------------- /workers/.artifactignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/.artifactignore -------------------------------------------------------------------------------- /workers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/README.md -------------------------------------------------------------------------------- /workers/azure_functions_worker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/__init__.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/__main__.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/_thirdparty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/azure_functions_worker/_thirdparty/typing_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/_thirdparty/typing_inspect.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/__init__.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/context.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/datumdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/datumdef.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/generic.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/meta.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/nullable_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/nullable_converters.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/out.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/retrycontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/retrycontext.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/rpcexception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/rpcexception.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/shared_memory_data_transfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/shared_memory_data_transfer/__init__.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/bindings/tracecontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/bindings/tracecontext.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/constants.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/dispatcher.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/extension.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/functions.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/http_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/http_v2.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/loader.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/logging.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/main.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/protos/.gitignore -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/protos/__init__.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/_src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/protos/_src/.gitignore -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/_src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/protos/_src/LICENSE -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/_src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/protos/_src/README.md -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/_src/src/proto/FunctionRpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/protos/_src/src/proto/FunctionRpc.proto -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/_src/src/proto/shared/NullableTypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/protos/_src/src/proto/shared/NullableTypes.proto -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/azure_functions_worker/protos/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/azure_functions_worker/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/utils/__init__.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/utils/app_setting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/utils/app_setting_manager.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/utils/common.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/utils/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/utils/dependency.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/utils/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/utils/tracing.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/utils/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/utils/wrappers.py -------------------------------------------------------------------------------- /workers/azure_functions_worker/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/azure_functions_worker/version.py -------------------------------------------------------------------------------- /workers/proxy_worker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/__init__.py -------------------------------------------------------------------------------- /workers/proxy_worker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/__main__.py -------------------------------------------------------------------------------- /workers/proxy_worker/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/dispatcher.py -------------------------------------------------------------------------------- /workers/proxy_worker/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/logging.py -------------------------------------------------------------------------------- /workers/proxy_worker/protos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/protos/.gitignore -------------------------------------------------------------------------------- /workers/proxy_worker/protos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/protos/__init__.py -------------------------------------------------------------------------------- /workers/proxy_worker/protos/_src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/protos/_src/.gitignore -------------------------------------------------------------------------------- /workers/proxy_worker/protos/_src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/protos/_src/LICENSE -------------------------------------------------------------------------------- /workers/proxy_worker/protos/_src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/protos/_src/README.md -------------------------------------------------------------------------------- /workers/proxy_worker/protos/_src/src/proto/FunctionRpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/protos/_src/src/proto/FunctionRpc.proto -------------------------------------------------------------------------------- /workers/proxy_worker/protos/_src/src/proto/identity/ClaimsIdentityRpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/protos/_src/src/proto/identity/ClaimsIdentityRpc.proto -------------------------------------------------------------------------------- /workers/proxy_worker/protos/_src/src/proto/shared/NullableTypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/protos/_src/src/proto/shared/NullableTypes.proto -------------------------------------------------------------------------------- /workers/proxy_worker/protos/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/proxy_worker/protos/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/proxy_worker/start_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/start_worker.py -------------------------------------------------------------------------------- /workers/proxy_worker/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/utils/__init__.py -------------------------------------------------------------------------------- /workers/proxy_worker/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/utils/common.py -------------------------------------------------------------------------------- /workers/proxy_worker/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/utils/constants.py -------------------------------------------------------------------------------- /workers/proxy_worker/utils/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/utils/dependency.py -------------------------------------------------------------------------------- /workers/proxy_worker/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/proxy_worker/version.py -------------------------------------------------------------------------------- /workers/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/pyproject.toml -------------------------------------------------------------------------------- /workers/python/prodV4/worker.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/python/prodV4/worker.config.json -------------------------------------------------------------------------------- /workers/python/prodV4/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/python/prodV4/worker.py -------------------------------------------------------------------------------- /workers/python/proxyV4/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/python/proxyV4/worker.py -------------------------------------------------------------------------------- /workers/python/test/worker.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/python/test/worker.config.json -------------------------------------------------------------------------------- /workers/python/test/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/python/test/worker.py -------------------------------------------------------------------------------- /workers/requirements.txt: -------------------------------------------------------------------------------- 1 | # Required dependencies listed in pyproject.toml 2 | . 3 | -------------------------------------------------------------------------------- /workers/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/.gitignore -------------------------------------------------------------------------------- /workers/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/__init__.py -------------------------------------------------------------------------------- /workers/tests/consumption_tests/function_app_zips/CommonLibraries.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/consumption_tests/function_app_zips/CommonLibraries.zip -------------------------------------------------------------------------------- /workers/tests/consumption_tests/function_app_zips/EnableDebugLogging.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/consumption_tests/function_app_zips/EnableDebugLogging.zip -------------------------------------------------------------------------------- /workers/tests/consumption_tests/function_app_zips/HttpNoAuth.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/consumption_tests/function_app_zips/HttpNoAuth.zip -------------------------------------------------------------------------------- /workers/tests/consumption_tests/function_app_zips/HttpV2FastApiStreaming.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/consumption_tests/function_app_zips/HttpV2FastApiStreaming.zip -------------------------------------------------------------------------------- /workers/tests/consumption_tests/function_app_zips/OOMError.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/consumption_tests/function_app_zips/OOMError.zip -------------------------------------------------------------------------------- /workers/tests/consumption_tests/function_app_zips/Opencensus.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/consumption_tests/function_app_zips/Opencensus.zip -------------------------------------------------------------------------------- /workers/tests/consumption_tests/function_app_zips/PinningFunctions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/consumption_tests/function_app_zips/PinningFunctions.zip -------------------------------------------------------------------------------- /workers/tests/consumption_tests/test_linux_consumption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/consumption_tests/test_linux_consumption.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/blob_functions_sdk/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/blob_functions_sdk/function_app.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/blob_functions_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/blob_functions_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/blob_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/blob_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/blob_trigger/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/blob_trigger/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_as_bytes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_as_bytes/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_as_bytes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_as_bytes/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_as_str/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_as_str/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_as_str/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_as_str/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_bytes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_bytes/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_bytes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_bytes/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_filelike/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_filelike/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_filelike/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_filelike/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_return/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_return/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_return/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_str/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_str/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_str/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_str/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_triggered/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_triggered/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/get_blob_triggered/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/get_blob_triggered/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_bytes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_bytes/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_bytes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_bytes/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_filelike/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_filelike/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_filelike/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_filelike/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_return/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_return/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_return/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_str/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_str/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_str/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_str/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/blob_functions/put_blob_trigger/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/blob_functions/put_blob_trigger/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/cosmosdb_functions/cosmosdb_input/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/cosmosdb_functions/cosmosdb_input/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/cosmosdb_functions/cosmosdb_input/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/cosmosdb_functions/cosmosdb_input/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/cosmosdb_functions/cosmosdb_trigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/cosmosdb_functions/cosmosdb_trigger/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/cosmosdb_functions/cosmosdb_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/cosmosdb_functions/cosmosdb_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/cosmosdb_functions/get_cosmosdb_triggered/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/cosmosdb_functions/get_cosmosdb_triggered/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/cosmosdb_functions/put_document/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/cosmosdb_functions/put_document/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/cosmosdb_functions/put_document/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/cosmosdb_functions/put_document/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/eventhub_output/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/eventhub_output/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/eventhub_output/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/eventhub_output/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/eventhub_trigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/eventhub_trigger/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/eventhub_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/eventhub_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/get_eventhub_triggered/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/get_eventhub_triggered/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/metadata_output/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/metadata_output/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/metadata_output/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/metadata_output/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/metadata_trigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/metadata_trigger/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/eventhub_functions/metadata_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/eventhub_functions/metadata_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_bool/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_bool/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_bool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_bool/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_bytes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_bytes/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_bytes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_bytes/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_dict/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_dict/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_dict/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_dict/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_double/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_double/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_double/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_double/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_int/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_int/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_int/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_int/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_list/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_list/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_list/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_list/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_none/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_none/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_none/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_none/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_none_no_type_hint/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_none_no_type_hint/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_processed_last/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_processed_last/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_string/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_string/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/return_string/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/return_string/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/table_out_binding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/table_out_binding/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/generic_functions/table_out_binding/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/generic_functions/table_out_binding/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/get_queue_blob/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/get_queue_blob/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/get_queue_blob/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/get_queue_blob/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/get_queue_blob_return/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/get_queue_blob_return/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/get_queue_blob_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/get_queue_blob_return/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue_message_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue_message_return/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue_multiple_out/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue_multiple_out/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue_multiple_out/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue_multiple_out/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue_return/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue_return/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue_return/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue_return_multiple/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue_return_multiple/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/put_queue_untyped_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/put_queue_untyped_return/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/queue_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/queue_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/queue_trigger/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/queue_trigger/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/queue_trigger_message_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/queue_trigger_message_return/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/queue_trigger_return/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/queue_trigger_return/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/queue_trigger_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/queue_trigger_return/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/queue_trigger_untyped/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/queue_trigger_untyped/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/queue_functions/queue_trigger_untyped/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/queue_functions/queue_trigger_untyped/main.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/servicebus_functions/put_message/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/servicebus_functions/put_message/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/servicebus_functions/put_message/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/servicebus_functions/put_message/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/servicebus_functions/servicebus_trigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/servicebus_functions/servicebus_trigger/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/table_functions/table_in_binding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/table_functions/table_in_binding/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/table_functions/table_in_binding/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/table_functions/table_in_binding/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/table_functions/table_out_binding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/table_functions/table_out_binding/__init__.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/table_functions/table_out_binding/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/table_functions/table_out_binding/function.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_blob_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_blob_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_cosmosdb_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_cosmosdb_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_deferred_bindings_blob_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_deferred_bindings_blob_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_eventhub_batch_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_eventhub_batch_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_eventhub_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_eventhub_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_generic_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_generic_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_queue_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_queue_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_servicebus_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_servicebus_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/test_table_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/test_table_functions.py -------------------------------------------------------------------------------- /workers/tests/emulator_tests/utils/eventhub/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/utils/eventhub/config.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/utils/eventhub/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/utils/eventhub/docker-compose.yml -------------------------------------------------------------------------------- /workers/tests/emulator_tests/utils/servicebus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/utils/servicebus/config.json -------------------------------------------------------------------------------- /workers/tests/emulator_tests/utils/servicebus/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/emulator_tests/utils/servicebus/docker-compose.yml -------------------------------------------------------------------------------- /workers/tests/endtoend/blueprint_functions/only_blueprint/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/blueprint_functions/only_blueprint/function_app.py -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_newer_version/lib/site-packages/azure/functions/_thirdparty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_newer_version/lib/site-packages/azure/functions/_thirdparty/typing_inspect.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_newer_version/lib/site-packages/azure/functions/_thirdparty/werkzeug/datastructures.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_newer_version/lib/site-packages/azure/functions/_thirdparty/werkzeug/formparser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_newer_version/lib/site-packages/azure/functions/_thirdparty/werkzeug/http.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_older_version/lib/site-packages/azure/functions/_thirdparty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_older_version/lib/site-packages/azure/functions/_thirdparty/typing_inspect.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_older_version/lib/site-packages/azure/functions/_thirdparty/werkzeug/datastructures.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_older_version/lib/site-packages/azure/functions/_thirdparty/werkzeug/formparser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/dependency_isolation_functions/.python_packages_azf_older_version/lib/site-packages/azure/functions/_thirdparty/werkzeug/http.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/tests/endtoend/durable_functions/DurableFunctionsHttpStart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/durable_functions/DurableFunctionsHttpStart/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/durable_functions/DurableFunctionsHttpStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/durable_functions/DurableFunctionsHttpStart/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/durable_functions/DurableFunctionsOrchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/durable_functions/DurableFunctionsOrchestrator/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/durable_functions/Hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/durable_functions/Hello/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/durable_functions/Hello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/durable_functions/Hello/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/durable_functions/durable_functions_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/durable_functions/durable_functions_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/endtoend/eventgrid_functions/eventgrid_output_binding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/eventgrid_functions/eventgrid_output_binding/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/eventgrid_functions/eventgrid_trigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/eventgrid_functions/eventgrid_trigger/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/eventgrid_functions/eventgrid_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/eventgrid_functions/eventgrid_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/eventgrid_functions/get_eventgrid_triggered/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/eventgrid_functions/get_eventgrid_triggered/main.py -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions/default_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions/default_template/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions/default_template/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions/default_template/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions/http_func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions/http_func/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions/http_func/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions/http_func/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions/http_functions_stein/file_name/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions/http_functions_stein/file_name/main.py -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions/http_functions_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions/http_functions_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions/user_thread_logging/thread/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions/user_thread_logging/thread/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions/user_thread_logging/thread/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions/user_thread_logging/thread/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/http_functions_v2/fastapi/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/http_functions_v2/fastapi/function_app.py -------------------------------------------------------------------------------- /workers/tests/endtoend/retry_policy_functions/fixed_strategy/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/retry_policy_functions/fixed_strategy/function_app.py -------------------------------------------------------------------------------- /workers/tests/endtoend/snake_case_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/snake_case_functions/function_app.py -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_functions_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_functions_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_input/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_input/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_input/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_input/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_input2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_input2/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_input2/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_input2/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_output/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_output/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_output/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_output/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_trigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_trigger/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/sql_functions/sql_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/sql_functions/sql_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/test_blueprint_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_blueprint_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_dependency_isolation_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_dependency_isolation_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_durable_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_durable_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_eol_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_eol_log.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_eventgrid_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_eventgrid_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_file_name_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_file_name_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_http_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_http_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_http_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_http_v2.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_retry_policy_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_retry_policy_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_snake_case_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_snake_case_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_sql_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_sql_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_third_party_http_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_third_party_http_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_threadpool_thread_count_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_threadpool_thread_count_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_timer_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_timer_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_warmup_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_warmup_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/test_worker_process_count_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/test_worker_process_count_functions.py -------------------------------------------------------------------------------- /workers/tests/endtoend/timer_functions/timer_func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/timer_functions/timer_func/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/timer_functions/timer_func/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/timer_functions/timer_func/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/timer_functions/timer_functions_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/timer_functions/timer_functions_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/endtoend/warmup_functions/warmup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/warmup_functions/warmup/__init__.py -------------------------------------------------------------------------------- /workers/tests/endtoend/warmup_functions/warmup/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/warmup_functions/warmup/function.json -------------------------------------------------------------------------------- /workers/tests/endtoend/warmup_functions/warmup_functions_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/endtoend/warmup_functions/warmup_functions_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/test_setup.py -------------------------------------------------------------------------------- /workers/tests/unittest_proxy/test_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittest_proxy/test_dependency.py -------------------------------------------------------------------------------- /workers/tests/unittest_proxy/test_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittest_proxy/test_dispatcher.py -------------------------------------------------------------------------------- /workers/tests/unittest_proxy/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittest_proxy/test_utilities.py -------------------------------------------------------------------------------- /workers/tests/unittests/azure_namespace_import/azure_namespace_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/azure_namespace_import/azure_namespace_import.py -------------------------------------------------------------------------------- /workers/tests/unittests/azure_namespace_import/test_azure_namespace_import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/azure_namespace_import/test_azure_namespace_import.sh -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/README.md -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/bad_out_annotation/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/bad_out_annotation/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/bad_out_annotation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/bad_out_annotation/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/import_error/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/import_error/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/import_error/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/import_error/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/inout_param/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/inout_param/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/inout_param/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/inout_param/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_app_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_app_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_context_param/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_context_param/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_context_param/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_context_param/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_datatype/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_datatype/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_datatype/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_datatype/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_http_trigger_anno/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_http_trigger_anno/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_in_anno/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_in_anno/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_in_anno/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_in_anno/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_in_anno_non_type/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_in_anno_non_type/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_out_anno/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_out_anno/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_out_anno/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_out_anno/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_return_anno/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_return_anno/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_return_anno/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_return_anno/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_return_anno_non_type/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_return_anno_non_type/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/invalid_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/invalid_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/missing_json_param/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/missing_json_param/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/missing_json_param/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/missing_json_param/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/missing_module/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/missing_module/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/missing_module/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/missing_module/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/missing_py_param/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/missing_py_param/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/missing_py_param/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/missing_py_param/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/module_not_found_error/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/module_not_found_error/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/module_not_found_error/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/module_not_found_error/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/return_param_in/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/return_param_in/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/return_param_in/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/return_param_in/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/syntax_error/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/syntax_error/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/syntax_error/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/syntax_error/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/wrong_binding_dir/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/wrong_binding_dir/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/wrong_binding_dir/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/wrong_binding_dir/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/wrong_param_dir/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/wrong_param_dir/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/broken_functions/wrong_param_dir/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/broken_functions/wrong_param_dir/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/dispatcher_functions/http_v2/fastapi/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/dispatcher_functions/http_v2/fastapi/function_app.py -------------------------------------------------------------------------------- /workers/tests/unittests/dispatcher_functions/show_context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/dispatcher_functions/show_context/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/dispatcher_functions/show_context/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/dispatcher_functions/show_context/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/dispatcher_functions/show_context_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/dispatcher_functions/show_context_async/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/dispatcher_functions/show_context_async/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/dispatcher_functions/show_context_async/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/durable_functions/activity_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/durable_functions/activity_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/durable_functions/activity_trigger/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/durable_functions/activity_trigger/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/durable_functions/activity_trigger_dict/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/durable_functions/activity_trigger_dict/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/durable_functions/activity_trigger_dict/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/durable_functions/activity_trigger_dict/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/durable_functions/activity_trigger_no_anno/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/durable_functions/activity_trigger_no_anno/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/durable_functions/orchestration_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/durable_functions/orchestration_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/durable_functions/orchestration_trigger/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/durable_functions/orchestration_trigger/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/file_name_functions/default_file_name/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/file_name_functions/default_file_name/function_app.py -------------------------------------------------------------------------------- /workers/tests/unittests/file_name_functions/invalid_file_name/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/file_name_functions/invalid_file_name/main -------------------------------------------------------------------------------- /workers/tests/unittests/file_name_functions/new_file_name/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/file_name_functions/new_file_name/test.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_bytes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_bytes/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_bytes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_bytes/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_bytes_no_anno/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_bytes_no_anno/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_none/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_none/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_none/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_none/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_str/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_str/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_str/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_str/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_str_no_anno/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_str_no_anno/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_as_str_no_anno/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_as_str_no_anno/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_implicit_output/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_implicit_output/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_implicit_output/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_implicit_output/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_nil_data/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_nil_data/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_nil_data/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_nil_data/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_bool/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_bool/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_bool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_bool/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_dict/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_dict/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_dict/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_dict/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_double/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_double/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_double/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_double/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_int/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_int/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_int/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_int/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_list/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_list/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_return_list/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_return_list/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/generic_functions/foobar_with_no_datatype/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/generic_functions/foobar_with_no_datatype/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/accept_json/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/accept_json/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/accept_json/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/accept_json/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/async_logging/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/async_logging/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/async_logging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/async_logging/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/async_return_str/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/async_return_str/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/async_return_str/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/async_return_str/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/create_task_with_context/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/create_task_with_context/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/create_task_with_context/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/create_task_with_context/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/create_task_without_context/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/create_task_without_context/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/debug_logging/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/debug_logging/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/debug_logging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/debug_logging/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/hijack_current_event_loop/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/hijack_current_event_loop/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/hijack_current_event_loop/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/hijack_current_event_loop/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/http_functions_stein/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/http_functions_stein/function_app.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/no_return/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/no_return/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/no_return/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/no_return/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/no_return_returns/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/no_return_returns/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/no_return_returns/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/no_return_returns/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/print_logging/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/print_logging/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/print_logging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/print_logging/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/raw_body_bytes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/raw_body_bytes/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/raw_body_bytes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/raw_body_bytes/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/remapped_context/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/remapped_context/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/remapped_context/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/remapped_context/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_bytes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_bytes/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_bytes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_bytes/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_context/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_context/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_context/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_context/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http_404/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http_404/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http_404/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http_404/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http_auth_admin/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http_auth_admin/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http_auth_admin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http_auth_admin/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http_no_body/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http_no_body/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http_no_body/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http_no_body/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http_redirect/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http_redirect/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_http_redirect/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_http_redirect/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_out/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_out/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_out/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_out/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_request/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_request/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_request/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_request/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_route_params/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_route_params/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_route_params/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_route_params/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_str/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_str/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/return_str/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/return_str/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/set_cookie_resp_header_empty/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/set_cookie_resp_header_empty/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/sync_logging/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/sync_logging/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/sync_logging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/sync_logging/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/unhandled_error/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/unhandled_error/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/unhandled_error/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/unhandled_error/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/unhandled_unserializable_error/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/unhandled_unserializable_error/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/unhandled_urllib_error/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/unhandled_urllib_error/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/unhandled_urllib_error/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/unhandled_urllib_error/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/user_event_loop/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/user_event_loop/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/http_functions/user_event_loop/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/http_functions/user_event_loop/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/absolute_thirdparty/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/absolute_thirdparty/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/absolute_thirdparty/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/absolute_thirdparty/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/entrypoint/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/entrypoint/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/entrypoint/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/entrypoint/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/implicit_import/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/implicit_import/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/implicit_import/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/implicit_import/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/load_outside_main/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/load_outside_main/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/load_outside_main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/load_outside_main/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/module_not_found/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/module_not_found/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/module_not_found/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/module_not_found/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/name_collision/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/name_collision/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/name_collision/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/name_collision/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/name_collision_app_import/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/name_collision_app_import/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/name_collision_app_import/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/name_collision_app_import/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/no_script_file/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/no_script_file/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/no_script_file/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/no_script_file/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/outside_main_code_in_init/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/outside_main_code_in_init/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/outside_main_code_in_init/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/outside_main_code_in_init/count.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/outside_main_code_in_init/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/outside_main_code_in_init/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/outside_main_code_in_main/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/outside_main_code_in_main/count.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/outside_main_code_in_main/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/outside_main_code_in_main/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/outside_main_code_in_main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/outside_main_code_in_main/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/parentmodule/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/parentmodule/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/parentmodule/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/parentmodule/module.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/parentmodule/sub_module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/parentmodule/sub_module/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/parentmodule/sub_module/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/parentmodule/sub_module/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/pytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/pytest/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/relimport/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/relimport/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/relimport/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/relimport/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/relimport/relative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/relimport/relative.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/simple/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/simple/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/simple/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/simple/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/stub_http_trigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/stub_http_trigger/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/stub_http_trigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/stub_http_trigger/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/stub_http_trigger/stub_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/stub_http_trigger/stub_tools.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/subdir/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/subdir/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/subdir/sub/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/subdir/sub/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/submodule/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/submodule/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/submodule/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/submodule/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/submodule/sub_module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/submodule/sub_module/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/load_functions/submodule/sub_module/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/load_functions/submodule/sub_module/module.py -------------------------------------------------------------------------------- /workers/tests/unittests/log_filtering_functions/debug_logging/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/log_filtering_functions/debug_logging/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/log_filtering_functions/debug_logging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/log_filtering_functions/debug_logging/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/log_filtering_functions/debug_user_logging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/log_filtering_functions/debug_user_logging/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/log_filtering_functions/sdk_logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/log_filtering_functions/sdk_logging/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/log_filtering_functions/sdk_logging/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/log_filtering_functions/sdk_logging/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/path_import/path_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/path_import/path_import.py -------------------------------------------------------------------------------- /workers/tests/unittests/path_import/test_path_import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/path_import/test_path_import.sh -------------------------------------------------------------------------------- /workers/tests/unittests/resources/customer_deps_path/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/customer_deps_path/azure/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/resources/customer_deps_path/common_module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/customer_deps_path/common_module/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/resources/customer_deps_path/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/customer_deps_path/readme.md -------------------------------------------------------------------------------- /workers/tests/unittests/resources/customer_func_path/HttpTrigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/customer_func_path/HttpTrigger/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/resources/customer_func_path/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/customer_func_path/HttpTrigger/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/resources/customer_func_path/common_module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/customer_func_path/common_module/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/resources/customer_func_path/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/customer_func_path/host.json -------------------------------------------------------------------------------- /workers/tests/unittests/resources/customer_func_path/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-functions -------------------------------------------------------------------------------- /workers/tests/unittests/resources/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/functions.png -------------------------------------------------------------------------------- /workers/tests/unittests/resources/mock_azure_functions/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/mock_azure_functions/azure/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/resources/mock_azure_functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/mock_azure_functions/readme.md -------------------------------------------------------------------------------- /workers/tests/unittests/resources/worker_deps_path/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/worker_deps_path/azure/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/resources/worker_deps_path/azure/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/worker_deps_path/azure/functions/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/resources/worker_deps_path/common_module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/worker_deps_path/common_module/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/resources/worker_deps_path/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/resources/worker_deps_path/readme.md -------------------------------------------------------------------------------- /workers/tests/unittests/test-binding/foo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test-binding/foo/__init__.py -------------------------------------------------------------------------------- /workers/tests/unittests/test-binding/foo/binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test-binding/foo/binding.py -------------------------------------------------------------------------------- /workers/tests/unittests/test-binding/functions/foo/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test-binding/functions/foo/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/test-binding/functions/foo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test-binding/functions/foo/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/test-binding/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test-binding/setup.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_app_setting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_app_setting_manager.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_broken_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_broken_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_code_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_code_quality.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_datumref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_datumref.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_deferred_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_deferred_bindings.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_dispatcher.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_enable_debug_logging_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_enable_debug_logging_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_extension.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_file_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_file_accessor.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_file_accessor_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_file_accessor_factory.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_functions_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_functions_registry.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_http_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_http_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_http_functions_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_http_functions_v2.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_http_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_http_v2.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_invalid_stein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_invalid_stein.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_loader.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_log_filtering_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_log_filtering_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_logging.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_main.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_mock_blob_shared_memory_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_mock_blob_shared_memory_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_mock_durable_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_mock_durable_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_mock_eventhub_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_mock_eventhub_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_mock_generic_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_mock_generic_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_mock_http_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_mock_http_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_mock_log_filtering_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_mock_log_filtering_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_mock_timer_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_mock_timer_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_nullable_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_nullable_converters.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_opentelemetry.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_rpc_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_rpc_messages.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_script_file_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_script_file_name.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_shared_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_shared_memory_manager.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_shared_memory_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_shared_memory_map.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_third_party_http_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_third_party_http_functions.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_tracing.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_types.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_typing_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_typing_inspect.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_utilities.py -------------------------------------------------------------------------------- /workers/tests/unittests/test_utilities_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/test_utilities_dependency.py -------------------------------------------------------------------------------- /workers/tests/unittests/timer_functions/return_pastdue/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/timer_functions/return_pastdue/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/timer_functions/return_pastdue/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/timer_functions/return_pastdue/main.py -------------------------------------------------------------------------------- /workers/tests/unittests/timer_functions/user_event_loop_timer/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/timer_functions/user_event_loop_timer/function.json -------------------------------------------------------------------------------- /workers/tests/unittests/timer_functions/user_event_loop_timer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/unittests/timer_functions/user_event_loop_timer/main.py -------------------------------------------------------------------------------- /workers/tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/utils/__init__.py -------------------------------------------------------------------------------- /workers/tests/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/utils/constants.py -------------------------------------------------------------------------------- /workers/tests/utils/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/utils/testutils.py -------------------------------------------------------------------------------- /workers/tests/utils/testutils_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/utils/testutils_docker.py -------------------------------------------------------------------------------- /workers/tests/utils/testutils_lc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-python-worker/HEAD/workers/tests/utils/testutils_lc.py --------------------------------------------------------------------------------