Add running black on all Python files

This commit is contained in:
Małgorzata Róg 2023-10-24 18:07:32 +02:00
parent c81a2d53c5
commit 5fcbdd78ec

2
Jenkinsfile vendored
View File

@ -5,6 +5,8 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building..' echo 'Building..'
// Run black to format all Python files
sh 'find . -name "*.py" -exec black {} +'
} }
} }
stage('Test') { stage('Test') {