From 9593aaa1d938387eb8acfad0908cf9a2fa4ffb42 Mon Sep 17 00:00:00 2001 From: Erik O'Leary Date: Mon, 21 Aug 2023 17:33:04 -0500 Subject: [PATCH] Disable parallel test execution to make test results more repeatable/predictable --- test/Dapr.E2E.Test/E2ETests.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/Dapr.E2E.Test/E2ETests.cs b/test/Dapr.E2E.Test/E2ETests.cs index 94ebbf3df..bc469f715 100644 --- a/test/Dapr.E2E.Test/E2ETests.cs +++ b/test/Dapr.E2E.Test/E2ETests.cs @@ -1,4 +1,4 @@ -// ------------------------------------------------------------------------ +// ------------------------------------------------------------------------ // Copyright 2021 The Dapr Authors // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -20,6 +20,8 @@ using Xunit; using Xunit.Abstractions; +[assembly: CollectionBehavior(DisableTestParallelization = true)] + namespace Dapr.E2E.Test { // We're using IClassFixture to manage the state we need across tests.