From 3d026f722f87ad56e2be18426264b866affe0915 Mon Sep 17 00:00:00 2001 From: Sergey Odinokov Date: Mon, 3 Jun 2024 15:39:32 +0700 Subject: [PATCH] Update psake-project.ps1 --- psake-project.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psake-project.ps1 b/psake-project.ps1 index 2a45e9f..460dc80 100644 --- a/psake-project.ps1 +++ b/psake-project.ps1 @@ -3,7 +3,7 @@ Include "packages\Hangfire.Build.0.4.3\tools\psake-common.ps1" Task Default -Depends Pack Task Test -Depends Compile -Description "Run unit and integration tests." { - Exec { dotnet test -c debug "tests\Hangfire.InMemory.Tests" } + Exec { dotnet test --no-build -c release "tests\Hangfire.InMemory.Tests" } } Task Collect -Depends Test -Description "Copy all artifacts to the build folder." {