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 { stages {
stage('Build') { stage('Build') {
steps { steps {
sh 'pip install -r requirements.txt' sh 'pip install black'
sh 'black ./'
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing..' echo 'Testing..'
sh 'black ./'
} }
} }
stage('Deploy') { stage('Deploy') {