Skip to content

Commit 2c02464

Browse files
committed
correct the csv input format
1 parent 625b12a commit 2c02464

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/load-testing/reference-test-config-yaml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ A test configuration uses the following keys:
2828
| `testName` | string | *Required*. Name of the test to run. The results of various test runs will be collected under this test name in the Azure portal. |
2929
| `testPlan` | string | *Required*. Relative path to the Apache JMeter test script to run. |
3030
| `engineInstances` | integer | *Required*. Number of parallel instances of the test engine to execute the provided test plan. You can update this property to increase the amount of load that the service can generate. |
31-
| `configurationFiles` | array | List of relevant configuration files or other files that you reference in the Apache JMeter script. For example, a CSV data set file, images, or any other data file. These files will be uploaded to the Azure Load Testing resource alongside the test script. If the files are in a subfolder on your local machine, use file paths that are relative to the location of the test script. <BR><BR>Azure Load Testing currently doesn't support the use of file paths in the JMX file. When you reference an external file in the test script, make sure to only specify the file name.<BR><BR>By default, the wildcard `*.csv` is generated to reference all *.csv* files in the test plan's folder. |
31+
| `configurationFiles` | array | List of relevant configuration files or other files that you reference in the Apache JMeter script. For example, a CSV data set file, images, or any other data file. These files will be uploaded to the Azure Load Testing resource alongside the test script. If the files are in a subfolder on your local machine, use file paths that are relative to the location of the test script. <BR><BR>Azure Load Testing currently doesn't support the use of file paths in the JMX file. When you reference an external file in the test script, make sure to only specify the file name. |
3232
| `description` | string | Short description of the test run. |
3333
| `failureCriteria` | object | Criteria that indicate failure of the test. Each criterion is in the form of:<BR>`[Aggregate_function] ([client_metric]) > [value]`<BR><BR>- `[Aggregate function] ([client_metric])` is either `avg(response_time_ms)` or `percentage(error).`<BR>- `value` is an integer number. |
3434
| `secrets` | object | List of secrets that the Apache JMeter script references. |
@@ -47,7 +47,7 @@ testPlan: SampleTest.jmx
4747
description: Load test website home page
4848
engineInstances: 1
4949
configurationFiles:
50-
- '*.csv'
50+
- 'SampleData.csv'
5151
failureCriteria:
5252
- avg(response_time_ms) > 300
5353
- percentage(error) > 50

0 commit comments

Comments
 (0)