Skip to content
Open
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
4 changes: 2 additions & 2 deletions test/UnitTests.proj
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
Targeting ~5 minutes per work item across all platforms. -->
<PropertyGroup>
<BaseMethodLimit Condition="'$(TestFullMSBuild)' == 'true'">64</BaseMethodLimit>
<BaseMethodLimit Condition="$(TargetRid.StartsWith('osx-arm64'))">128</BaseMethodLimit>
<BaseMethodLimit Condition="'$(TargetOS)' == 'osx' and '$(TargetArchitecture)' == 'arm64'">128</BaseMethodLimit>
<BaseMethodLimit Condition="'$(BaseMethodLimit)' == ''">32</BaseMethodLimit>
</PropertyGroup>

Expand All @@ -85,7 +85,7 @@
fewer (but larger) work items and reducing per-item overhead on Helix queues. -->
<ItemGroup>
<SDKCustomXUnitProject Update="$(RepoRoot)src\Microsoft.CodeAnalysis.NetAnalyzers\tests\**\*.*Tests.csproj">
<MethodLimitMultiplier>5</MethodLimitMultiplier>
<MethodLimitMultiplier>10</MethodLimitMultiplier>
</SDKCustomXUnitProject>
<SDKCustomXUnitProject Update="TemplateEngine\**\*.csproj;**\Microsoft.TemplateEngine.Cli.UnitTests.csproj">
<MethodLimitMultiplier>20</MethodLimitMultiplier>
Expand Down
Loading