From 17b7d34bb990e616d8ad772301c0e44eff4f4451 Mon Sep 17 00:00:00 2001 From: Sridhar Periyasamy Date: Mon, 4 Apr 2016 18:45:08 -0700 Subject: [PATCH] Disable running Kestrel tests in parallel. --- test/Kestrel.Tests/DotnetTest.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/Kestrel.Tests/DotnetTest.cs b/test/Kestrel.Tests/DotnetTest.cs index cb637d4e8..8bbddd39b 100644 --- a/test/Kestrel.Tests/DotnetTest.cs +++ b/test/Kestrel.Tests/DotnetTest.cs @@ -12,6 +12,8 @@ using Xunit; using System.Threading.Tasks; using FluentAssertions; +[assembly: CollectionBehavior(DisableTestParallelization = true)] + namespace Microsoft.DotNet.Kestrel.Tests { public class DotnetTest : TestBase