Install packages
Some checks failed
Amarillo/amarillo-gitea/amarillo-core/pipeline/head There was a failure building this commit

This commit is contained in:
Csaba 2023-12-13 15:54:30 +01:00
parent b19d2e9dbb
commit e1b0b04582

14
Jenkinsfile vendored
View file

@ -9,16 +9,16 @@ pipeline {
steps { steps {
echo 'Creating virtual environment' echo 'Creating virtual environment'
sh '''python -m venv .venv sh '''python -m venv .venv
. venv/bin/activate''' . .venv/bin/activate'''
} }
} }
// stage('pip install') { stage('Installing requirements') {
// steps { steps {
// echo 'Installing packages' echo 'Installing packages'
// sh 'pip ins' sh 'pip install -r requirements.txt'
// } }
// } }
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing' echo 'Testing'