azure-functions-core-tools
azure-functions-core-tools copied to clipboard
Command line tools for Azure Functions
### Description Is there plans for native support for Windows-Arm64?
**local.settings.json**: ```json { "IsEncrypted": false, "Values": { "FUNCTIONS_WORKER_RUNTIME": "node", "AzureWebJobsStorage": "", "languageWorkers__node__arguments": "--inspect-brk" } } ``` With that configuration set, `func start` will result in: ``` Starting inspector on 127.0.0.1:9229...
Make func new and func init tests less flakey by changing when templates are installed/uninstalled
`Func init` calls `dotnet new template` but sometimes it doesn't fetch the correct template due to a race condition when tests are run in parallel, and typically retrying the command...
### Version Latest stable 4.0.7317 ### Description I choose to generate an isolated c# project and then I try to run the dockerfile (via Jetbrains Rider). It first pulls the...
This PR migrates pure unit tests from the `test/Azure.Functions.Cli.Tests` project to the dedicated `test/Cli/Func.Unit.Tests` project. The goal is to separate unit tests (which test individual components in isolation) from integration/E2E...
Identify unit tests in the "test/Azure.Functions.Cli.Tests" project (typically tests that do not depend on using CliTester or running the cli itself) and move them to the unit test project "test/Cli/Func.Unit.Tests"
### Version 4.0.7030 ### Description When attempting to deploy a Python function app using Python 3.12, the deployment fails because the Azure Functions Core Tools uses `distlib` version 0.3.0, which...
### Issue describing the changes in this PR resolves #4332 This PR contains the func durable tests that are refactored to use the new test framework. ### Pull request checklist...
### Added func new tests checks build issue resolves #4330 ### Pull request checklist * [x] My changes **do not** require documentation changes * [ ] Otherwise: Documentation issue linked...
How to configure Azure Function App (Flex Consumption Plan) to use corporate proxy (Bluecoat) for outbound internet access? I’m trying to deploy an Azure Function App (running on the Flex...