Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Avoid running the test in parallel with others
  • Loading branch information
jjonescz committed Aug 26, 2025
commit 2e928a6c2393d29c7aa0bb10bb7abe61c5175c91
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

namespace Microsoft.DotNet.Tests.BuildServerTests;

[CollectionDefinition(nameof(BuildServerTestCollection), DisableParallelization = true)]
public sealed class BuildServerTestCollection : ICollectionFixture<BuildServerTestCollection>;

[Collection(nameof(BuildServerTestCollection))]
public sealed class UnifiedBuildServerTests(ITestOutputHelper output) : SdkTest(output)
{
[Fact]
Expand All @@ -29,7 +33,6 @@ public void Shutdown_Roslyn()
.WithWorkingDirectory(testInstance.Path)
.Execute()
.Should().Pass()
.And.NotHaveStdOutContaining("VBCSCompiler")
.And.NotHaveStdErr();

// Build.
Expand Down