Update 'Jenkinsfile'

This commit is contained in:
Piotr Szkudlarek 2023-10-24 18:41:27 +02:00
parent bce58adc1d
commit 05d24b1fb5

4
Jenkinsfile vendored
View File

@ -6,13 +6,13 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'pip install -r requirements.txt'
sh 'black ./'
sh 'pip install black'
}
}
stage('Test') {
steps {
echo 'Testing..'
sh 'black ./'
}
}
stage('Deploy') {