File: NoParallelCollection.cs
Web Access
Project: src\src\Servers\Kestrel\Transport.Quic\test\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj (Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests;
 
// Define test collection for tests to avoid all other tests.
// Parallelization disable for QUIC test to avoid test flakiness from msquic refusing connections
// because of high resource usage. See https://github.com/dotnet/runtime/issues/55979
[CollectionDefinition(nameof(NoParallelCollection), DisableParallelization = true)]
public partial class NoParallelCollection { }