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 {
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'