Skip to content

Commit e2ec2ca

Browse files
committed
Increase test parallelism to 8 threads/processes
Raised MaxCpuCount and maxParallelThreads from 4 to 8 in test settings and xUnit config to enable greater test concurrency and potentially reduce test execution time.
1 parent b467571 commit e2ec2ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Source/Tst/KZDev.PerfUtils.tests.runsettings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Limits parallel test host processes and caps total session duration.
66
-->
77
<RunConfiguration>
8-
<MaxCpuCount>4</MaxCpuCount>
8+
<MaxCpuCount>8</MaxCpuCount>
99
<TestSessionTimeout>600000</TestSessionTimeout>
1010
</RunConfiguration>
1111
</RunSettings>

Source/Tst/xunit.runner.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"$schema": "https://xunit.net/schema/current/xunit.runner.schema.json",
33
"parallelizeAssembly": true,
44
"parallelizeTestCollections": true,
5-
"maxParallelThreads": 4,
5+
"maxParallelThreads": 8,
66
"parallelAlgorithm": "conservative"
77
}

0 commit comments

Comments
 (0)