Merge jenkins-test #1

Merged
Csaba merged 16 commits from jenkins-test into main 2023-12-18 12:50:58 +01:00
Showing only changes of commit e1b0b04582 - Show all commits

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'