From b8b0d3894c5536e8c2d62230def43073e5ebfcb8 Mon Sep 17 00:00:00 2001 From: Pavel Krymets Date: Thu, 9 Jun 2016 14:54:03 -0700 Subject: [PATCH] Try disabling running tests in parallel to fix DataProtectionProviderTests.System_UsesProvidedDirectoryAndCertificate failures --- .../Properties/AssemblyInfo.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/Microsoft.AspNetCore.DataProtection.Extensions.Test/Properties/AssemblyInfo.cs diff --git a/test/Microsoft.AspNetCore.DataProtection.Extensions.Test/Properties/AssemblyInfo.cs b/test/Microsoft.AspNetCore.DataProtection.Extensions.Test/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..a613784a32 --- /dev/null +++ b/test/Microsoft.AspNetCore.DataProtection.Extensions.Test/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 Xunit; + +// Workaround for DataProtectionProviderTests.System_UsesProvidedDirectoryAndCertificate +// https://github.com/aspnet/DataProtection/issues/160 +[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly)] \ No newline at end of file