Update 'Jenkinsfile'

This commit is contained in:
Piotr Szkudlarek 2023-10-24 18:52:43 +02:00
parent c5dbe27db7
commit 5d04e2d7de

5
Jenkinsfile vendored
View File

@ -1,12 +1,13 @@
pipeline { pipeline {
agent { agent {
docker { image 'python:3' } docker { image 'python:3.10' }
} }
stages { stages {
stage('Test') { stage('Test') {
steps { steps {
sh 'pip --version' sh 'pip --version'
sh 'sudo pip install -r requirements.txt' sh 'pip install black'
sh 'black ./'
} }
} }
} }