From 64af0228d60958cc579b6f323e1912fccf18f61c Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Mon, 27 Aug 2018 13:39:56 -0700 Subject: [PATCH] Disable parallelization (#1944) --- test/Identity.FunctionalTests/Properties/AssemblyInfo.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/Identity.FunctionalTests/Properties/AssemblyInfo.cs diff --git a/test/Identity.FunctionalTests/Properties/AssemblyInfo.cs b/test/Identity.FunctionalTests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..f8a194b9d1 --- /dev/null +++ b/test/Identity.FunctionalTests/Properties/AssemblyInfo.cs @@ -0,0 +1,8 @@ +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using Microsoft.AspNetCore.Testing.xunit; +using Xunit; + +// Caused OOM test issues with file watcher. See https://github.com/aspnet/Identity/issues/1926 +[assembly: CollectionBehavior(DisableTestParallelization = true)]