From 549ca8d060438c31101ea0bc36ffef4f0fc51d5c Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sat, 6 Jan 2018 13:10:10 +0100 Subject: [PATCH] Build: running tests must not restore or build implicitly --- build.fsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.fsx b/build.fsx index da82b7c8..238620aa 100644 --- a/build.fsx +++ b/build.fsx @@ -409,7 +409,7 @@ Target "OpenBlasWinBuild" DoNothing let testLibrary testsDir testsProj framework = DotNetCli.RunCommand (fun c -> { c with WorkingDir = testsDir}) - (sprintf "run -p %s --configuration Release --framework %s" + (sprintf "run -p %s --configuration Release --framework %s --no-restore --no-build" testsProj framework)