This commit is contained in:
Julia Krzemien 2023-10-24 18:56:59 +02:00
commit 75f77df1b6
3 changed files with 15 additions and 0 deletions

13
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,13 @@
pipeline {
agent {
docker { image 'python:3.10' }
}
stages {
stage('Test') {
steps {
sh 'pip install --user black'
sh 'black ./'
}
}
}
}

1
emptyfile Normal file
View File

@ -0,0 +1 @@
test

View File

@ -35,3 +35,4 @@ tornado==6.3.3
traitlets==5.11.2 traitlets==5.11.2
tzdata==2023.3 tzdata==2023.3
wcwidth==0.2.8 wcwidth==0.2.8
black==23.10.1