Skip to content

Latest commit

 

History

History
99 lines (76 loc) · 12.8 KB

File metadata and controls

99 lines (76 loc) · 12.8 KB
title description ms.topic ms.prod ms.technology ms.assetid ms.manager ms.custom ms.author author ms.date monikerRange
Visual Studio Test task
Run unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test runner. Test frameworks that have a Visual Studio test adapter such as xUnit, NUnit, Chutzpah, etc. can also be run.
reference
devops
devops-cicd
EF087383-EE5E-42C7-9A53-AB56C98420F9
jillfra
seodec18
pbora
pboraMSFT
12/07/2018
azure-devops

Visual Studio Test task

Azure Pipelines

Use this task in a build or release pipeline to run unit and functional tests (Selenium, Appium, Coded UI test, and more) using the Visual Studio Test Runner. Other than MSTest-based tests, test frameworks that have a Visual Studio test adapter, such as xUnit, NUnit, Chutzpah, can also be executed.

Tests that target the .NET core framework can be executed by specifying the appropriate target framework value.

Tests can be distributed on multiple agents using version 2 of this task.

Demands

The agent must have the following capability:

vstest

The vstest demand can be satisfied in two ways:

  1. Visual Studio is installed on the agent machine.

  2. By using the Visual Studio Test Platform Installer task in the pipeline definition.

::: moniker range="> tfs-2018"

YAML snippet

[!INCLUDE temp]

::: moniker-end

Arguments

[!INCLUDE [temp](../_shared/control-options-arguments.md)]
ArgumentDescription
testSelector
Select tests using
(Required)
  • Test assembly: 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.
  • Test plan: Use this option to run tests from your test plan that have an automated test method associated with it. To learn more about how to associate tests with a test case work item, see [Associate automated tests with test cases](../../../test/associate-automated-test-with-test-case.md).
  • Test run: Use this option when you are setting up an environment to [run tests from test plans](../../../test/run-automated-tests-from-test-hub.md). This option should not be used when running tests in a continuous integration /continuous deployment (CI/CD) pipeline.
testAssemblyVer2
Test assemblies
(Required) Run tests from the specified files.
Ordered tests and webtests can be run by specifying the .orderedtest and .webtest files respectively. To run .webtest, Visual Studio 2017 Update 4 or higher is needed.

The file paths are relative to the search folder. Supports multiple lines of minimatch patterns. [More Information](https://aka.ms/minimatchexamples)
testPlan
Test plan
(Required) Select a test plan containing test suites with automated test cases.
testSuite
Test suite
(Required) Select one or more test suites containing automated test cases. Test case work items must be associated with an automated test method. [Learn more](https://go.microsoft.com/fwlink/?linkid=847773).
testConfiguration
Test configuration
(Required) Select Test Configuration.
tcmTestRun
Test Run
(Optional) Test run based selection is used when triggering [automated test runs from test plans](../../../test/run-automated-tests-from-test-hub.md). This option cannot be used for running tests in the CI/CD pipeline.
searchFolder
Search folder
(Required) Folder to search for the test assemblies.
testFiltercriteria
Test filter criteria
(Optional) Additional criteria to filter tests from Test assemblies. For example: `Priority=1|Name=MyTestMethod`. [More information](https://msdn.microsoft.com/library/jj155796.aspx)
runOnlyImpactedTests
Run only impacted tests
(Optional) Automatically select, and run only the tests needed to validate the code change. [More information](https://aka.ms/tialearnmore)
runAllTestsAfterXBuilds
Number of builds after which all tests should be run
(Optional) 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.
uiTests
Test mix contains UI tests
(Optional) To run UI tests, ensure that the agent is set to [run in interactive mode with autologon enabled](../../agents/agents.md). Setting up an agent to run interactively must be done before queueing the build / release. Checking this box does not configure the agent in interactive mode automatically. This option in the task is to only serve as a reminder to configure agent appropriately to avoid failures. Hosted Windows agents from the VS 2015 and 2017 pools can be used to run UI tests.
vstestLocationMethod
Select test platform using
(Optional) Specify which test platform should be used.
vsTestVersion
Test platform version
(Optional) The version of Visual Studio test to use. If latest is specified it chooses Visual Studio 2017 or Visual Studio 2015 depending on what is installed. Visual Studio 2013 is not supported. To run tests without needing Visual Studio on the agent, use the ‘Installed by tools installer’ option in the UI or `toolsInstaller` in YAML. Be sure to include the ‘Visual Studio Test Platform Installer’ task to acquire the test platform from NuGet.
vstestLocation
Path to vstest.console.exe
(Optional) Specify the path to VSTest.
runSettingsFile
Settings file
(Optional) Path to runsettings or testsettings file to use with the tests.Starting with Visual Studio 15.7, it is recommended to use [runsettings](/visualstudio/test/configure-unit-tests-by-using-a-dot-runsettings-file) for all types of tests. To learn more about converting a .testsettings file to a .runsettings file, see [this topic](https://github.com/Microsoft/vstest-docs/blob/master/RFCs/0023-TestSettings-Deprecation.md).
overrideTestrunParameters
Override test run parameters
(Optional) Override parameters defined in the `TestRunParameters` section of runsettings file or `Properties` section of testsettings file. For example: `-key1 value1 -key2 value2`. Note: Properties specified in testsettings file can be accessed via the TestContext using Visual Studio 2017 Update 4 or higher
pathtoCustomTestAdapters
Path to custom test adapters
(Optional) Directory path to custom test adapters. Adapters residing in the same folder as the test assemblies are automatically discovered.
runInParallel
Run tests in parallel on multi-core machines
(Optional) If set, tests will run in parallel leveraging available cores of the machine. This will override the MaxCpuCount if specified in your runsettings file. [Click here](https://aka.ms/paralleltestexecution) to learn more about how tests are run in parallel.
runTestsInIsolation
Run tests in isolation
(Optional) 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 job setting.
codeCoverageEnabled
Code coverage enabled
(Optional) Collect code coverage information from the test run.
otherConsoleOptions
Other console options
(Optional) Other console options that can be passed to vstest.console.exe, as documented here.

These options are not supported and will be ignored when running tests using the ‘Multi agent’ parallel setting of an agent job or when running tests using ‘Test plan’ option. The options can be specified using a settings file instead.

distributionBatchType
Batch tests
(Optional) A batch is a group of tests. A batch of tests runs at a time and results are published for that batch. If the job in which the task runs is set to use multiple agents, each agent picks up any available batches of tests to run in parallel.

Based on number of tests and agents: Simple batching based on the number of tests and agents participating in the test run.

Based on past running time of tests: This batching considers past running time to create batches of tests such that each batch has approximately equal running time.

Based on test assemblies: Tests from an assembly are batched together.
batchingBasedOnAgentsOption
Batch options
(Optional) Simple batching based on the number of tests and agents participating in the test run. When the batch size is automatically determined, each batch contains `(total number of tests / number of agents)` tests. If a batch size is specified, each batch will contain the specified number of tests.
customBatchSizeValue
Number of tests per batch
(Required) Specify batch size
batchingBasedOnExecutionTimeOption
Batch options
(Optional) This batching considers past running time to create batches of tests such that each batch has approximately equal running time. Quick running tests will be batched together, while longer running tests may belong to a separate batch. When this option is used with the multi-agent job setting, total test time is reduced to a minimum.
customRunTimePerBatchValue
Running time (sec) per batch
(Required) Specify the running time (sec) per batch
dontDistribute
Do not distribute tests and replicate instead when multiple agents are used in the job
(Optional) Choosing this option will not distribute tests across agents when the task is running in a multi-agent job.
Each of the selected test(s) will be repeated on each agent.
The option is not applicable when the agent job is configured to run with no parallelism or with the multi-config option.
testRunTitle
Test run title
(Optional) Provide a name for the test run.
platform
Build platform
(Optional) Build platform against which the tests should be reported. If you have defined a variable for platform in your build task, use that here.
configuration
Build configuration
(Optional) Build configuration against which the tests should be reported. If you have defined a variable for configuration in your build task, use that here.
publishRunAttachments
Upload test attachments
(Optional) Opt in/out of publishing run level attachments.
rerunFailedTests
Rerun failed tests
(Optional) Selecting this option will rerun any failed tests until they pass or the maximum # of attempts is reached.
rerunType
Do not rerun if test failures exceed specified threshold
(Optional) Use this option to avoid rerunning tests when failure rate crosses the specified threshold. This is applicable if any environment issues leads to massive failures.
You can specify % failures with `basedOnTestFailurePercentage` or # of failed tests as a threshold with `basedOnTestFailureCount`.
rerunFailedThreshold
% failure
(Optional) Use this option to avoid rerunning tests when failure rate crosses the specified threshold. This is applicable if any environment issues leads to massive failures and if `rerunType` is `basedOnTestFailurePercentage`.
rerunFailedTestCasesMaxLimit
# of failed tests
(Optional) Use this option to avoid rerunning tests when number of failed test cases crosses specified limit. This is applicable if any environment issues leads to massive failures and if `rerunType` is `rerunFailedTestCasesMaxLimit`.
rerunMaxAttempts
Maximum # of attempts
(Optional) Specify the maximum # of times a failed test should be retried. If a test passes before the maximum # of attempts is reached, it will not be rerun further.

Open source

This task is open source on GitHub. Feedback and contributions are welcome.

Q & A