-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into Localization
- Loading branch information
Showing
10 changed files
with
171 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,158 +1,158 @@ | ||
{ | ||
"id": "0B0F01ED-7DDE-43FF-9CBB-E48954DAF9B1", | ||
"name": "PublishTestResults", | ||
"friendlyName": "Publish Test Results", | ||
"description": "Publish test results to Azure Pipelines", | ||
"helpUrl": "https://docs.microsoft.com/azure/devops/pipelines/tasks/test/publish-test-results", | ||
"helpMarkDown": "[Learn more about this task](https://go.microsoft.com/fwlink/?LinkID=613742)", | ||
"category": "Test", | ||
"visibility": [ | ||
"Build", | ||
"Release" | ||
], | ||
"author": "Microsoft Corporation", | ||
"version": { | ||
"Major": 2, | ||
"Minor": 247, | ||
"Patch": 0 | ||
"id": "0B0F01ED-7DDE-43FF-9CBB-E48954DAF9B1", | ||
"name": "PublishTestResults", | ||
"friendlyName": "Publish Test Results", | ||
"description": "Publish test results to Azure Pipelines", | ||
"helpUrl": "https://docs.microsoft.com/azure/devops/pipelines/tasks/test/publish-test-results", | ||
"helpMarkDown": "[Learn more about this task](https://go.microsoft.com/fwlink/?LinkID=613742)", | ||
"category": "Test", | ||
"visibility": [ | ||
"Build", | ||
"Release" | ||
], | ||
"author": "Microsoft Corporation", | ||
"version": { | ||
"Major": 2, | ||
"Minor": 248, | ||
"Patch": 0 | ||
}, | ||
"demands": [], | ||
"releaseNotes": "<ul><li>NUnit3 support</li><li>Support for Minimatch files pattern</li></ul>", | ||
"minimumAgentVersion": "2.0.0", | ||
"groups": [ | ||
{ | ||
"name": "advanced", | ||
"displayName": "Advanced", | ||
"isExpanded": false | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"name": "testRunner", | ||
"aliases": [ | ||
"testResultsFormat" | ||
], | ||
"type": "pickList", | ||
"label": "Test result format", | ||
"defaultValue": "JUnit", | ||
"required": true, | ||
"helpMarkDown": "Format of test result files generated by your choice of test runner e.g. JUnit, VSTest, XUnit V2, NUnit and CTest.", | ||
"options": { | ||
"JUnit": "JUnit", | ||
"NUnit": "NUnit", | ||
"VSTest": "VSTest", | ||
"XUnit": "XUnit", | ||
"CTest": "CTest" | ||
} | ||
}, | ||
{ | ||
"name": "testResultsFiles", | ||
"type": "multiLine", | ||
"label": "Test results files", | ||
"defaultValue": "**/TEST-*.xml", | ||
"required": true, | ||
"helpMarkDown": "Test results files path. Supports multiple lines of minimatch patterns. [More Information](https://go.microsoft.com/fwlink/?LinkId=835764)", | ||
"properties": { | ||
"rows": "3", | ||
"resizable": "true" | ||
} | ||
}, | ||
{ | ||
"name": "searchFolder", | ||
"type": "string", | ||
"label": "Search folder", | ||
"defaultValue": "$(System.DefaultWorkingDirectory)", | ||
"required": false, | ||
"helpMarkDown": "Folder to search for the test result files. Defaults to $(System.DefaultWorkingDirectory)." | ||
}, | ||
{ | ||
"name": "mergeTestResults", | ||
"type": "boolean", | ||
"label": "Merge test results", | ||
"defaultValue": "false", | ||
"required": false, | ||
"helpMarkDown": "A test run is created for each results file. Check this option to merge results into a single test run. To optimize for better performance, results will be merged into a single run if there are more than 100 result files, irrespective of this option." | ||
}, | ||
{ | ||
"name": "failTaskOnFailedTests", | ||
"type": "boolean", | ||
"label": "Fail if there are test failures", | ||
"defaultValue": "false", | ||
"required": false, | ||
"helpMarkDown": "Fail the task if there are any test failures. Check this option to fail the task if test failures are detected in the result files." | ||
}, | ||
{ | ||
"name": "failTaskOnFailureToPublishResults", | ||
"type": "boolean", | ||
"label": "Fail if there is failure in publishing test results", | ||
"defaultValue": false, | ||
"required": false, | ||
"helpMarkDown": "Fail if there is failure in publishing test results. Check this option to fail the task if publishing test results is failed partially." | ||
}, | ||
"demands": [], | ||
"releaseNotes": "<ul><li>NUnit3 support</li><li>Support for Minimatch files pattern</li></ul>", | ||
"minimumAgentVersion": "2.0.0", | ||
"groups": [ | ||
{ | ||
"name": "advanced", | ||
"displayName": "Advanced", | ||
"isExpanded": false | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"name": "testRunner", | ||
"aliases": [ | ||
"testResultsFormat" | ||
], | ||
"type": "pickList", | ||
"label": "Test result format", | ||
"defaultValue": "JUnit", | ||
"required": true, | ||
"helpMarkDown": "Format of test result files generated by your choice of test runner e.g. JUnit, VSTest, XUnit V2, NUnit and CTest.", | ||
"options": { | ||
"JUnit": "JUnit", | ||
"NUnit": "NUnit", | ||
"VSTest": "VSTest", | ||
"XUnit": "XUnit", | ||
"CTest": "CTest" | ||
} | ||
}, | ||
{ | ||
"name": "testResultsFiles", | ||
"type": "multiLine", | ||
"label": "Test results files", | ||
"defaultValue": "**/TEST-*.xml", | ||
"required": true, | ||
"helpMarkDown": "Test results files path. Supports multiple lines of minimatch patterns. [More Information](https://go.microsoft.com/fwlink/?LinkId=835764)", | ||
"properties": { | ||
"rows": "3", | ||
"resizable": "true" | ||
} | ||
}, | ||
{ | ||
"name": "searchFolder", | ||
"type": "string", | ||
"label": "Search folder", | ||
"defaultValue": "$(System.DefaultWorkingDirectory)", | ||
"required": false, | ||
"helpMarkDown": "Folder to search for the test result files. Defaults to $(System.DefaultWorkingDirectory)." | ||
}, | ||
{ | ||
"name": "mergeTestResults", | ||
"type": "boolean", | ||
"label": "Merge test results", | ||
"defaultValue": "false", | ||
"required": false, | ||
"helpMarkDown": "A test run is created for each results file. Check this option to merge results into a single test run. To optimize for better performance, results will be merged into a single run if there are more than 100 result files, irrespective of this option." | ||
}, | ||
{ | ||
"name": "failTaskOnFailedTests", | ||
"type": "boolean", | ||
"label": "Fail if there are test failures", | ||
"defaultValue": "false", | ||
"required": false, | ||
"helpMarkDown": "Fail the task if there are any test failures. Check this option to fail the task if test failures are detected in the result files." | ||
}, | ||
{ | ||
"name": "failTaskOnFailureToPublishResults", | ||
"type": "boolean", | ||
"label": "Fail if there is failure in publishing test results", | ||
"defaultValue": false, | ||
"required": false, | ||
"helpMarkDown": "Fail if there is failure in publishing test results. Check this option to fail the task if publishing test results is failed partially." | ||
}, | ||
{ | ||
"name": "failTaskOnMissingResultsFile", | ||
"type": "boolean", | ||
"label": "Fail if no result files are found", | ||
"defaultValue": false, | ||
"required": false, | ||
"helpMarkDown": "Fail the task if no result files are found." | ||
}, | ||
{ | ||
"name": "testRunTitle", | ||
"type": "string", | ||
"label": "Test run title", | ||
"defaultValue": "", | ||
"required": false, | ||
"helpMarkDown": "Provide a name for the Test Run." | ||
}, | ||
{ | ||
"name": "platform", | ||
"aliases": [ | ||
"buildPlatform" | ||
], | ||
"type": "string", | ||
"label": "Build Platform", | ||
"defaultValue": "", | ||
"required": false, | ||
"groupName": "advanced", | ||
"helpMarkDown": "Platform for which the tests were run." | ||
}, | ||
{ | ||
"name": "configuration", | ||
"aliases": [ | ||
"buildConfiguration" | ||
], | ||
"type": "string", | ||
"label": "Build Configuration", | ||
"defaultValue": "", | ||
"required": false, | ||
"groupName": "advanced", | ||
"helpMarkDown": "Configuration for which the tests were run." | ||
}, | ||
{ | ||
"name": "publishRunAttachments", | ||
"type": "boolean", | ||
"label": "Upload test results files", | ||
"defaultValue": "true", | ||
"required": false, | ||
"helpMarkDown": "Upload logs and other files containing diagnostic information collected when the tests were run.", | ||
"groupName": "advanced" | ||
} | ||
], | ||
"instanceNameFormat": "Publish Test Results $(testResultsFiles)", | ||
"execution": { | ||
"Node10": { | ||
"target": "publishtestresults.js", | ||
"argumentFormat": "" | ||
}, | ||
"Node16": { | ||
"target": "publishtestresults.js", | ||
"argumentFormat": "" | ||
} | ||
{ | ||
"name": "failTaskOnMissingResultsFile", | ||
"type": "boolean", | ||
"label": "Fail if no result files are found", | ||
"defaultValue": false, | ||
"required": false, | ||
"helpMarkDown": "Fail the task if no result files are found." | ||
}, | ||
{ | ||
"name": "testRunTitle", | ||
"type": "string", | ||
"label": "Test run title", | ||
"defaultValue": "", | ||
"required": false, | ||
"helpMarkDown": "Provide a name for the Test Run." | ||
}, | ||
{ | ||
"name": "platform", | ||
"aliases": [ | ||
"buildPlatform" | ||
], | ||
"type": "string", | ||
"label": "Build Platform", | ||
"defaultValue": "", | ||
"required": false, | ||
"groupName": "advanced", | ||
"helpMarkDown": "Platform for which the tests were run." | ||
}, | ||
{ | ||
"name": "configuration", | ||
"aliases": [ | ||
"buildConfiguration" | ||
], | ||
"type": "string", | ||
"label": "Build Configuration", | ||
"defaultValue": "", | ||
"required": false, | ||
"groupName": "advanced", | ||
"helpMarkDown": "Configuration for which the tests were run." | ||
}, | ||
{ | ||
"name": "publishRunAttachments", | ||
"type": "boolean", | ||
"label": "Upload test results files", | ||
"defaultValue": "true", | ||
"required": false, | ||
"helpMarkDown": "Upload logs and other files containing diagnostic information collected when the tests were run.", | ||
"groupName": "advanced" | ||
} | ||
], | ||
"instanceNameFormat": "Publish Test Results $(testResultsFiles)", | ||
"execution": { | ||
"Node10": { | ||
"target": "publishtestresults.js", | ||
"argumentFormat": "" | ||
}, | ||
"messages": { | ||
"NoMatchingFilesFound": "No test result files matching '%s' were found.", | ||
"ErrorTestResultsPublisher": "Error while executing TestResultsPublisher: %s.", | ||
"ErrorFailTaskOnFailedTests": "There are one or more test failures detected in result files. Detailed summary of published test results can be viewed in the Tests tab." | ||
"Node16": { | ||
"target": "publishtestresults.js", | ||
"argumentFormat": "" | ||
} | ||
}, | ||
"messages": { | ||
"NoMatchingFilesFound": "No test result files matching '%s' were found.", | ||
"ErrorTestResultsPublisher": "Error while executing TestResultsPublisher: %s.", | ||
"ErrorFailTaskOnFailedTests": "There are one or more test failures detected in result files. Detailed summary of published test results can be viewed in the Tests tab." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Default|2.247.0 | ||
Node20_229_13|2.247.1 | ||
Default|2.248.0 | ||
Node20_229_13|2.248.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.