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

Update the TIA fwd link and run in parallel link #4071

Merged
merged 4 commits into from
Apr 19, 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
2 changes: 2 additions & 0 deletions Tasks/VsTest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ The feature is presently scoped to the following:
- No xplat support (Windows only).
- No UWP support.

Learn more about Test Impact [here](https://aka.ms/tialearnmore)


#### Advanced Execution Options

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"loc.input.label.testFiltercriteria": "Test filter criteria",
"loc.input.help.testFiltercriteria": "Additional criteria to filter tests from Test assemblies. For example: `Priority=1|Name=MyTestMethod`",
"loc.input.label.runOnlyImpactedTests": "Run only impacted tests",
"loc.input.help.runOnlyImpactedTests": "Automatically select, and run only the tests needed to validate the code change.",
"loc.input.help.runOnlyImpactedTests": "Automatically select, and run only the tests needed to validate the code change. [More information](https://aka.ms/tialearnmore)",
"loc.input.label.runAllTestsAfterXBuilds": "Number of builds after which all tests should be run",
"loc.input.help.runAllTestsAfterXBuilds": "Number of builds after which to automatically run all tests. Test Impact Analysis stores the mapping between test cases and source code. It is recommended to regenerate the mapping by running all tests, on a regular basis.",
"loc.input.label.uiTests": "Test mix contains UI tests",
Expand All @@ -38,7 +38,7 @@
"loc.input.label.overrideTestrunParameters": "Override test run parameters",
"loc.input.help.overrideTestrunParameters": "Override parameters defined in the TestRunParameters section of runsettings file. For example: `-key1 value1 -key2 value2`",
"loc.input.label.runInParallel": "Run tests in parallel on multi-core machines",
"loc.input.help.runInParallel": "If set, tests will run in parallel leveraging available cores of the machine. [Click here](https://msdn.microsoft.com/library/jj159530.aspx) to learn more about how tests are run in parallel.",
"loc.input.help.runInParallel": "If set, tests will run in parallel leveraging available cores of the machine. [Click here](https://aka.ms/paralleltestexecution) to learn more about how tests are run in parallel.",
"loc.input.label.runTestsInIsolation": "Run tests in isolation",
"loc.input.help.runTestsInIsolation": "Runs the tests in an isolated process. This makes vstest.console.exe process less likely to be stopped on an error in the tests, but tests might run slower. This option currently cannot be used when running with the multi-agent phase setting.",
"loc.input.label.pathtoCustomTestAdapters": "Path to custom test adapters",
Expand Down
6 changes: 3 additions & 3 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": 29
"Patch": 30
},
"demands": [
"vstest"
Expand Down Expand Up @@ -150,7 +150,7 @@
"label": "Run only impacted tests",
"defaultValue": "False",
"required": false,
"helpMarkDown": "Automatically select, and run only the tests needed to validate the code change.",
"helpMarkDown": "Automatically select, and run only the tests needed to validate the code change. [More information](https://aka.ms/tialearnmore)",
"groupName": "testSelection",
"visibleRule": "testSelector = testAssemblies"
},
Expand Down Expand Up @@ -238,7 +238,7 @@
"label": "Run tests in parallel on multi-core machines",
"defaultValue": "False",
"required": false,
"helpMarkDown": "If set, tests will run in parallel leveraging available cores of the machine. [Click here](https://msdn.microsoft.com/library/jj159530.aspx) to learn more about how tests are run in parallel.",
"helpMarkDown": "If set, tests will run in parallel leveraging available cores of the machine. [Click here](https://aka.ms/paralleltestexecution) to learn more about how tests are run in parallel.",
"groupName": "executionOptions"
},
{
Expand Down
2 changes: 1 addition & 1 deletion 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": 29
"Patch": 30
},
"demands": [
"vstest"
Expand Down