Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Serialize unit tests that touch app context switches
  • Loading branch information
mdaigle committed Oct 30, 2025
commit 376c4c69a11b4da3554a2c4cd794789c0a309df6
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

namespace Microsoft.Data.SqlClient.UnitTests.Microsoft.Data.SqlClient
{
// TODO: We need to keep this in the same collection as SimulatedServerTests because of the AppContext switch manipulation.
// Make AppContext switches testable in isolation and remove this constraint so that these tests can run in parallel with others.
[Collection("SimulatedServerTests")]
public class SqlConnectionStringTest : IDisposable
{
private LocalAppContextSwitchesHelper _appContextSwitchHelper;
Expand Down
Loading