// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.Foundry.Hosting.UnitTests; /// /// xUnit collection that serializes tests mutating the FOUNDRY_PROJECT_ENDPOINT /// process environment variable. Without this, parallel test execution causes flaky /// races between tests that set / unset the variable. /// [CollectionDefinition(Name, DisableParallelization = true)] public sealed class FoundryProjectEndpointEnvFixture { public const string Name = "FoundryProjectEndpointEnv"; }