Skip to content

Commit

Permalink
Update docs/core/testing/unit-testing-mstest-analyzers-MSTEST0001.md
Browse files Browse the repository at this point in the history
Co-authored-by: Jakub Jareš <[email protected]>
  • Loading branch information
Evangelink and nohwnd authored Dec 21, 2023
1 parent cdbf2f9 commit 4f6ed65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The assembly is not marked with `[Parallelize]` or `[DoNotParallelize]` attribut

## Rule description

By default, MSTest runs tests sequentially which can lead to severe performance limitations. It is recommended to enable assembly attribute `[Parallelize]` or if the assembly is known to not be parallelizable, to use explicitly the assembly level attribute `[DoNotParallelize]`.
By default, MSTest runs tests within the same assembly sequentially, which can lead to severe performance limitations. It is recommended to enable assembly attribute `[Parallelize]` to run tests in parallel, or if the assembly is known to not be parallelizable, to use explicitly the assembly level attribute `[DoNotParallelize]`.

## How to fix violations

Expand Down

0 comments on commit 4f6ed65

Please sign in to comment.