skip to Main Content

Azure DevOps "Code Coverage" view changes after pipeline run finished

I do use PublishCodeCoverageResults@2 task in my Azure DevOps pipeline - task: PublishCodeCoverageResults@2 inputs: codeCoverageTool: 'JaCoCo' summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/target/site/jacoco-aggregate/**/jacoco.xml' reportDirectory: '$(System.DefaultWorkingDirectory)/target/site/jacoco-aggregate/' pathToSources: '$(System.DefaultWorkingDirectory)/**/src/main/java/' failIfCoverageEmpty: false Everything works nicely but the odd thing is - while running this task the Code Coverage…

VIEW QUESTION

Azure – Stop logging from TableClient

I have a function app that uses a table client. svc.AddAzureClients(bldr => { var serviceUrl = tableStorageSection["ServiceUrl"] ?? throw new ArgumentNullException("Missing value for Values:TableStorage:ServiceUrl"); bldr.UseCredential(new DefaultAzureCredential()) .AddTableServiceClient(new Uri(serviceUrl)); }); When I run the function locally, this client spits out a…

VIEW QUESTION

Why doesn't "run-command" return any response in Azure?

I'm trying to start a ping in Linux VM in Azure. I would like to use API to do that. I have a blank response with status : 202 accepted. `https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommand?api-version=2023-07-01 JSON body : { "commandId": "RunShellScript", "script": [ "ping…

VIEW QUESTION
Back To Top
Search