From 0005072361588c9b17ffdf7422d1d527822fad16 Mon Sep 17 00:00:00 2001 From: Michael Pysson Date: Thu, 9 May 2024 23:41:41 +0000 Subject: [PATCH] Merged PR 784167: Pin Nuget frontend test to xunit This test has an issue after updating to qtest. Pinning to xunit for the time being --- .../FrontEnd/UnitTests/Nuget/Test.BuildXL.FrontEnd.Nuget.dsc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Public/Src/FrontEnd/UnitTests/Nuget/Test.BuildXL.FrontEnd.Nuget.dsc b/Public/Src/FrontEnd/UnitTests/Nuget/Test.BuildXL.FrontEnd.Nuget.dsc index 5f7fd2c33..6222b1c30 100644 --- a/Public/Src/FrontEnd/UnitTests/Nuget/Test.BuildXL.FrontEnd.Nuget.dsc +++ b/Public/Src/FrontEnd/UnitTests/Nuget/Test.BuildXL.FrontEnd.Nuget.dsc @@ -1,11 +1,15 @@ // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. +import * as XUnit from "Sdk.Managed.Testing.XUnit"; + namespace Nuget { @@public export const dll = BuildXLSdk.test({ assemblyName: "Test.BuildXL.FrontEnd.Nuget", sources: globR(d`.`, "*.cs"), + // TODO - there is an outstanding issue with passing the credential provider environment variables down to this test + testFramework: XUnit.framework, references: [ ...addIf(BuildXLSdk.isFullFramework, NetFx.System.Xml.dll,