Skip to content

Commit 4b7d566

Browse files
authored
Apply suggestion from @T-Gro
1 parent ee94052 commit 4b7d566

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/FSharp.Compiler.ComponentTests/CompilerCompatibilityTests.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ type CompilerCompatibilityTests() =
200200
try
201201
// Step 3: Clear global packages cache to ensure we get the fresh package, then restore the app
202202
let appProjectFile = Path.Combine(appProjectPath, "CompilerCompatApp.fsproj")
203-
let _ = runDotnetCommand "nuget locals global-packages --clear" appProjectPath appCompilerVersion
203+
// This messes up with global nuget information
204+
//let _ = runDotnetCommand "nuget locals global-packages --clear" appProjectPath appCompilerVersion
204205
let restoreOutput = runDotnetCommand $"restore \"{appProjectFile}\" --force --no-cache" appProjectPath appCompilerVersion
205206
// Restore may say "Restore complete", "Restored", or "All projects are up-to-date" depending on state
206207
Assert.True(

0 commit comments

Comments
 (0)