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'