From b165f4206e80c197be59f89ccbe5b931272f0c9d Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Wed, 15 Jan 2020 18:43:57 -0800 Subject: [PATCH] Disable test parallelization in TimeSeries tests --- .../Properties/AssemblyInfo.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/Microsoft.ML.TimeSeries.Tests/Properties/AssemblyInfo.cs diff --git a/test/Microsoft.ML.TimeSeries.Tests/Properties/AssemblyInfo.cs b/test/Microsoft.ML.TimeSeries.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..70da298f72 --- /dev/null +++ b/test/Microsoft.ML.TimeSeries.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using Xunit; + +[assembly: CollectionBehavior(DisableTestParallelization = true)]