Skip to content

Commit d634cf0

Browse files
author
David Staheli
committed
Improve help for Maven testResultsFiles field
1 parent 44843fd commit d634cf0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Tasks/Maven/Strings/resources.resjson/en-US/resources.resjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"loc.input.label.publishJUnitResults": "Publish to TFS/Team Services",
1515
"loc.input.help.publishJUnitResults": "Select this option to publish JUnit test results produced by the Maven build to TFS/Team Services. Each test results file matching `Test Results Files` will be published as a test run in TFS/Team Services.",
1616
"loc.input.label.testResultsFiles": "Test Results Files",
17-
"loc.input.help.testResultsFiles": "Test results files path. Wildcards can be used. For example, `**/TEST-*.xml` for all XML files whose name starts with TEST-.",
17+
"loc.input.help.testResultsFiles": "Specify the path and pattern of test results files to publish. For example, `**/TEST-*.xml` for all XML files whose name starts with `TEST-`. If no root path is specified, files are matched beneath the default working directory, the value of which is available in the variable: $(System.DefaultWorkingDirectory). For example, a value of '**/TEST-*.xml' will actually result in matching files from '$(System.DefaultWorkingDirectory)/**/TEST-*.xml'.",
1818
"loc.input.label.testRunTitle": "Test Run Title",
1919
"loc.input.help.testRunTitle": "Provide a name for the test run.",
2020
"loc.input.label.codeCoverageTool": "Code Coverage Tool",

Tasks/Maven/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"version": {
2121
"Major": 1,
22-
"Minor": 113,
22+
"Minor": 114,
2323
"Patch": 0
2424
},
2525
"minimumAgentVersion": "1.89.0",
@@ -85,7 +85,7 @@
8585
"defaultValue": "**/TEST-*.xml",
8686
"required": true,
8787
"groupName": "junitTestResults",
88-
"helpMarkDown": "Test results files path. Wildcards can be used. For example, `**/TEST-*.xml` for all XML files whose name starts with TEST-.",
88+
"helpMarkDown": "Specify the path and pattern of test results files to publish. For example, `**/TEST-*.xml` for all XML files whose name starts with `TEST-`. If no root path is specified, files are matched beneath the default working directory, the value of which is available in the variable: $(System.DefaultWorkingDirectory). For example, a value of '**/TEST-*.xml' will actually result in matching files from '$(System.DefaultWorkingDirectory)/**/TEST-*.xml'.",
8989
"visibleRule": "publishJUnitResults = true"
9090
},
9191
{

Tasks/Maven/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"version": {
2121
"Major": 1,
22-
"Minor": 113,
22+
"Minor": 114,
2323
"Patch": 0
2424
},
2525
"minimumAgentVersion": "1.89.0",

0 commit comments

Comments
 (0)