1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using Xunit;
6 
7 // Tests could run slower if PLINQ itself is run in parallel, especially as concurrent
8 // queries compete for thread pool resources.  Further, the ETW tests must not be run
9 // concurrently with any other tests.
10 [assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly, DisableTestParallelization = true, MaxParallelThreads = 1)]
11