From 5a33b794ab1d17d99d2b481d43440e3aff6944f5 Mon Sep 17 00:00:00 2001 From: "Brett V. Forsgren" Date: Mon, 28 Sep 2020 16:37:02 -0700 Subject: [PATCH] TEMP: skip salsa --- eng/Build.ps1 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/eng/Build.ps1 b/eng/Build.ps1 index 929cfdfc72a6..3024406be5cb 100644 --- a/eng/Build.ps1 +++ b/eng/Build.ps1 @@ -126,6 +126,7 @@ function Process-Arguments() { $script:testDesktop = $True $script:testCoreClr = $True $script:testFSharpQA = $True + $script:testVs = $True } @@ -547,8 +548,9 @@ try { } if ($testVs -and -not $noVisualStudio) { - TestUsingNUnit -testProject "$RepoRoot\vsintegration\tests\GetTypesVS.UnitTests\GetTypesVS.UnitTests.fsproj" -targetFramework $desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\GetTypesVS.UnitTests" - TestUsingNUnit -testProject "$RepoRoot\vsintegration\tests\UnitTests\VisualFSharp.UnitTests.fsproj" -targetFramework $desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\VisualFSharp.UnitTests" + # TEMP: skip salsa + #TestUsingNUnit -testProject "$RepoRoot\vsintegration\tests\GetTypesVS.UnitTests\GetTypesVS.UnitTests.fsproj" -targetFramework $desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\GetTypesVS.UnitTests" + #TestUsingNUnit -testProject "$RepoRoot\vsintegration\tests\UnitTests\VisualFSharp.UnitTests.fsproj" -targetFramework $desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\VisualFSharp.UnitTests" } # verify nupkgs have access to the source code