diff --git a/build/azure-devops/agents-ci-discovery.yml b/build/azure-devops/agents-ci-discovery.yml index eb72c53a3..16f927303 100644 --- a/build/azure-devops/agents-ci-discovery.yml +++ b/build/azure-devops/agents-ci-discovery.yml @@ -105,6 +105,7 @@ stages: - template: templates/tests/run-integration-tests.yml parameters: agentName: 'Resource Discovery' + testRunTitle: 'resource-discovery-linux' dotnetVersion: '$(DotNet.Sdk.Version)' buildConfiguration: '$(DotNet.Configuration)' - template: templates/docker/show-container-logs.yml @@ -164,6 +165,7 @@ stages: - template: templates/tests/run-integration-tests.yml parameters: agentName: 'Resource Discovery' + testRunTitle: 'resource-discovery-windows' dotnetVersion: '$(DotNet.Sdk.Version)' buildConfiguration: '$(DotNet.Configuration)' - template: templates/docker/show-container-logs.yml diff --git a/build/azure-devops/agents-ci-scraper.yml b/build/azure-devops/agents-ci-scraper.yml index 426c69426..2d4ac311f 100644 --- a/build/azure-devops/agents-ci-scraper.yml +++ b/build/azure-devops/agents-ci-scraper.yml @@ -151,6 +151,7 @@ stages: - template: templates/tests/run-integration-tests.yml parameters: agentName: 'Scraper' + testRunTitle: 'scraper-linux' dotnetVersion: '$(DotNet.Sdk.Version)' buildConfiguration: '$(DotNet.Configuration)' - template: templates/docker/show-container-logs.yml @@ -250,6 +251,7 @@ stages: - template: templates/tests/run-integration-tests.yml parameters: agentName: 'Scraper' + testRunTitle: 'scraper-windows' dotnetVersion: '$(DotNet.Sdk.Version)' buildConfiguration: '$(DotNet.Configuration)' - template: templates/docker/show-container-logs.yml diff --git a/build/azure-devops/agents-resource-discovery-release-official.yml b/build/azure-devops/agents-resource-discovery-release-official.yml index 5456103cb..25eb5935e 100644 --- a/build/azure-devops/agents-resource-discovery-release-official.yml +++ b/build/azure-devops/agents-resource-discovery-release-official.yml @@ -118,6 +118,7 @@ stages: - template: templates/tests/run-integration-tests.yml parameters: agentName: 'Resource Discovery' + testRunTitle: 'resource-discovery-linux' dotnetVersion: '$(DotNet.Sdk.Version)' buildConfiguration: '$(DotNet.Configuration)' - template: templates/docker/show-container-logs.yml @@ -189,6 +190,7 @@ stages: - template: templates/tests/run-integration-tests.yml parameters: agentName: 'Resource Discovery' + testRunTitle: 'resource-discovery-windows' dotnetVersion: '$(DotNet.Sdk.Version)' buildConfiguration: '$(DotNet.Configuration)' - template: templates/docker/show-container-logs.yml diff --git a/build/azure-devops/agents-scraper-release-official.yml b/build/azure-devops/agents-scraper-release-official.yml index 9f4e46f35..fd44c7ed6 100644 --- a/build/azure-devops/agents-scraper-release-official.yml +++ b/build/azure-devops/agents-scraper-release-official.yml @@ -160,9 +160,10 @@ stages: - template: templates/docker/show-running-containers.yml - template: templates/tests/run-integration-tests.yml parameters: - agentName: 'Scraper' - dotnetVersion: '$(DotNet.Sdk.Version)' - buildConfiguration: '$(DotNet.Configuration)' + agentName: 'Scraper' + testRunTitle: 'scraper-linux' + dotnetVersion: '$(DotNet.Sdk.Version)' + buildConfiguration: '$(DotNet.Configuration)' - template: templates/docker/show-container-logs.yml parameters: containerName: '$(Container.Scraper.Name)' @@ -261,11 +262,12 @@ stages: networkName: '$(Container.Network.Name)' os: '$(OS.Name)' - template: templates/docker/show-running-containers.yml - #- template: templates/tests/run-integration-tests.yml - # parameters: - # agentName: 'Scraper' - # dotnetVersion: '$(DotNet.Sdk.Version)' - # buildConfiguration: '$(DotNet.Configuration)' + - template: templates/tests/run-integration-tests.yml + parameters: + agentName: 'Scraper' + testRunTitle: 'scraper-windows' + dotnetVersion: '$(DotNet.Sdk.Version)' + buildConfiguration: '$(DotNet.Configuration)' - template: templates/docker/show-container-logs.yml parameters: containerName: '$(Container.Scraper.Name)' diff --git a/build/azure-devops/templates/tests/run-integration-tests.yml b/build/azure-devops/templates/tests/run-integration-tests.yml index 1d3fddf6b..9c188a9e0 100644 --- a/build/azure-devops/templates/tests/run-integration-tests.yml +++ b/build/azure-devops/templates/tests/run-integration-tests.yml @@ -1,6 +1,8 @@ parameters: - name: agentName type: string +- name: testRunTitle + type: string - name: dotnetVersion type: string - name: buildConfiguration @@ -30,4 +32,5 @@ steps: projects: 'src/Promitor.Tests.Integration/Promitor.Tests.Integration.csproj' feedsToUse: 'config' nugetConfigPath: 'src/NuGet.config' + testRunTitle: ${{ parameters.testRunTitle }} arguments: '--configuration ${{ parameters.buildConfiguration }} --filter "Agent=${{ parameters.agentName}}"' \ No newline at end of file