From dc8b09068fd43bb3e74dd5bf0cd00a0cc0e3234e Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 19 Jul 2024 06:22:35 +0000 Subject: [PATCH] Made conda installation quiet --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 63bbab3..16968b4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,7 @@ pipeline { stages { stage("Install") { steps { - sh 'conda env update -n base --file environment.yml' + sh 'conda env update -n base --file environment.yml -y -q' sh 'dotnet restore Props/Props.csproj' sh 'dotnet restore Props.Tests/Props.Tests.csproj' sh 'dotnet restore Props.Shop/Props.Shop.sln'