Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing the string for on demand test run #4618

Merged
merged 1 commit into from
Jun 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"loc.group.displayName.executionOptions": "Execution options",
"loc.group.displayName.reportingOptions": "Reporting options",
"loc.input.label.testSelector": "Select tests using",
"loc.input.help.testSelector": "Specify the means to select tests",
"loc.input.help.testSelector": "<ul><li><b>Test assembly: </b>Use this option to specify one or more test assemblies that contain your tests. You can optionally specify a filter criteria to select only specific tests.</li><li><b>Test plan: </b>Use this option to run tests from your test plan that have an automated test method associated with it.</li><li><b>Test run: </b>Use this option when you are setting up an environment to run tests from the Test hub. This option should not be used when running tests in a continuous integration / continuous deployment (CI/CD) pipeline.</li>",
"loc.input.label.testAssemblyVer2": "Test assemblies",
"loc.input.help.testAssemblyVer2": "Run tests from the specified files. The file paths are relative to the search folder. Supports multiple lines of minimatch patterns. [More Information](https://aka.ms/minimatchexamples)",
"loc.input.label.testPlan": "Test plan",
Expand Down Expand Up @@ -115,7 +115,7 @@
"loc.messages.pathToCustomAdaptersContainsNoAdapters": "Path to custom adapters '%s' does not contain any test adapters, provide a valid path.",
"loc.messages.testAssembliesSelector": "Test assemblies",
"loc.messages.testPlanSelector": "Test plan",
"loc.messages.testRunSelector": "Test run (for on-demand runs)",
"loc.messages.testRunIdInvalid": "The test selection is 'Test run (for on-demand runs)', but the test run id '%s' given is invalid",
"loc.messages.testRunIdInput": "Test run Id (for on-demand runs) : '%s'"
"loc.messages.testRunSelector": "Test run",
"loc.messages.testRunIdInvalid": "The test selection is 'Test run', but the test run id '%s' given is invalid",
"loc.messages.testRunIdInput": "Test run Id : '%s'"
}
12 changes: 6 additions & 6 deletions Tasks/VsTest/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 2,
"Minor": 0,
"Patch": 58
"Patch": 59
},
"demands": [
"vstest"
Expand Down Expand Up @@ -48,12 +48,12 @@
"label": "Select tests using",
"defaultValue": "testAssemblies",
"required": true,
"helpMarkDown": "Specify the means to select tests",
"helpMarkDown": "<ul><li><b>Test assembly: </b>Use this option to specify one or more test assemblies that contain your tests. You can optionally specify a filter criteria to select only specific tests.</li><li><b>Test plan: </b>Use this option to run tests from your test plan that have an automated test method associated with it.</li><li><b>Test run: </b>Use this option when you are setting up an environment to run tests from the Test hub. This option should not be used when running tests in a continuous integration / continuous deployment (CI/CD) pipeline.</li>",
"groupName": "testSelection",
"options": {
"testAssemblies": "Test assemblies",
"testPlan": "Test plan",
"testRun": "Test run (for on-demand runs)"
"testRun": "Test run"
}
},
{
Expand Down Expand Up @@ -402,8 +402,8 @@
"pathToCustomAdaptersContainsNoAdapters": "Path to custom adapters '%s' does not contain any test adapters, provide a valid path.",
"testAssembliesSelector": "Test assemblies",
"testPlanSelector": "Test plan",
"testRunSelector": "Test run (for on-demand runs)",
"testRunIdInvalid": "The test selection is 'Test run (for on-demand runs)', but the test run id '%s' given is invalid",
"testRunIdInput": "Test run Id (for on-demand runs) : '%s'"
"testRunSelector": "Test run",
"testRunIdInvalid": "The test selection is 'Test run', but the test run id '%s' given is invalid",
"testRunIdInput": "Test run Id : '%s'"
}
}
6 changes: 3 additions & 3 deletions Tasks/VsTest/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 2,
"Minor": 0,
"Patch": 58
"Patch": 59
},
"demands": [
"vstest"
Expand Down Expand Up @@ -53,7 +53,7 @@
"options": {
"testAssemblies": "Test assemblies",
"testPlan": "Test plan",
"testRun": "Test run (for on-demand runs)"
"testRun": "Test run"
}
},
{
Expand Down Expand Up @@ -406,4 +406,4 @@
"testRunIdInvalid": "ms-resource:loc.messages.testRunIdInvalid",
"testRunIdInput": "ms-resource:loc.messages.testRunIdInput"
}
}
}