Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Bunting <6431421+dougbu@users.noreply.github.com>2022-05-13 01:45:38 +0300
committerDoug Bunting <6431421+dougbu@users.noreply.github.com>2022-05-13 01:45:38 +0300
commite1994e1f160360923c8f7558dea5f025b71255f9 (patch)
treedf485f4ca036b8da836243d49c8f8b89b004d5b5
parent068495e4a678e8bfc3a86183442e32a98bd3fadc (diff)
Run Components.E3ETests serially
- parallel testing is unreliable
-rw-r--r--src/Components/test/E2ETest/xunit.runner.json7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Components/test/E2ETest/xunit.runner.json b/src/Components/test/E2ETest/xunit.runner.json
index baa05fb93d..d912531385 100644
--- a/src/Components/test/E2ETest/xunit.runner.json
+++ b/src/Components/test/E2ETest/xunit.runner.json
@@ -1,7 +1,6 @@
{
- // This is set to -1 to allow the usage of an
- // unlimited ammount of threads.
- "maxParallelThreads": -1,
"diagnosticMessages": true,
- "longRunningTestSeconds": 30
+ "longRunningTestSeconds": 30,
+ "parallelizeAssembly": false,
+ "parallelizeTestCollections": false
}