Skip to content

Commit fbfea1e

Browse files
committed
Add xunit.runner.explicit.json to disable test parallelism
Added a new xunit.runner.explicit.json config file that disables parallelization at both the assembly and test collection levels, sets maxParallelThreads to 1, and uses the "conservative" parallel algorithm. Also includes a $schema reference for validation.
1 parent e2ec2ca commit fbfea1e

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"$schema": "https://xunit.net/schema/current/xunit.runner.schema.json",
3+
"parallelizeAssembly": false,
4+
"parallelizeTestCollections": false,
5+
"maxParallelThreads": 1,
6+
"parallelAlgorithm": "conservative"
7+
}

0 commit comments

Comments
 (0)