Skip to content

Commit 0c1bed5

Browse files
Pipeline edit 1
1 parent 56bb409 commit 0c1bed5

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

articles/load-testing/how-to-export-test-results.md

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ When you run a load test as part of your CI/CD pipeline, Azure Load Testing gene
114114
path: ${{ github.workspace }}/loadTest
115115
```
116116
117-
1. After your GitHub Actions workflow completes, you can select the **loadTestResults* folder from the **Artifacts** section on the **Summary** page of the workflow run.
117+
1. After your GitHub Actions workflow completes, you can select the **loadTestResults** folder from the **Artifacts** section on the **Summary** page of the workflow run.
118118
119119
:::image type="content" source="./media/how-to-export-test-results/github-actions-run-summary.png" alt-text="Screenshot that shows the GitHub Actions workflow summary page, highlighting the test results in the Artifacts section." lightbox="./media/how-to-export-test-results/github-actions-run-summary.png":::
120120
@@ -128,20 +128,7 @@ When you run a load test as part of your CI/CD pipeline, Azure Load Testing gene
128128
129129
1. Edit the workflow file and add the `publish` task after the `AzureLoadTest` task in the workflow file.
130130

131-
Azure Load Testing places the test results in the `loadTest` folder of the Azure Pipelines default working directory.
132-
133-
```yml
134-
- task: AzureLoadTest@1
135-
inputs:
136-
azureSubscription: $(serviceConnection)
137-
loadTestConfigFile: 'SampleApp.yaml'
138-
resourceGroup: $(loadTestResourceGroup)
139-
loadTestResource: $(loadTestResource)
140-
141-
- publish: $(System.DefaultWorkingDirectory)/loadTest
142-
artifact: results
143-
```
144-
Azure Load Testing places the HTML report in the `xx` folder of the Azure Pipelines default working directory.
131+
Azure Load Testing places the test results and the HTML report in the `loadTest` folder of the Azure Pipelines default working directory.
145132

146133
```yml
147134
- task: AzureLoadTest@1

0 commit comments

Comments
 (0)