Skip to content
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
namespace MSTest.Acceptance.IntegrationTests;

[TestClass]
// The VSTest_* tests below invoke `dotnet test` against the same shared VSTest project
// path for every target framework. Running them in parallel races on MSBuild outputs
// such as `bin/Release/<tfm>/TelemetryVSTestProject.runtimeconfig.json` and shared
// `obj/` files, which causes intermittent `GenerateRuntimeConfigurationFiles` failures.
// Serialize all tests in this class to keep the suite deterministic.
[DoNotParallelize]
public sealed class TelemetryTests : AcceptanceTestBase<TelemetryTests.TestAssetFixture>
{
private const string MTPAssetName = "TelemetryMTPProject";
Expand Down
Loading