From e1b0b04582878da8878604a2ef79fee50e6de0d6 Mon Sep 17 00:00:00 2001 From: Francia Csaba Date: Wed, 13 Dec 2023 15:54:30 +0100 Subject: [PATCH] Install packages --- Jenkinsfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7c8c51b..b287500 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,16 +9,16 @@ pipeline { steps { echo 'Creating virtual environment' sh '''python -m venv .venv - . venv/bin/activate''' + . .venv/bin/activate''' } } - // stage('pip install') { - // steps { - // echo 'Installing packages' - // sh 'pip ins' - // } - // } + stage('Installing requirements') { + steps { + echo 'Installing packages' + sh 'pip install -r requirements.txt' + } + } stage('Test') { steps { echo 'Testing'