From 5fcbdd78ec6992ef2c160fe53c776621339667f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C5=82gorzata=20R=C3=B3g?= Date: Tue, 24 Oct 2023 18:07:32 +0200 Subject: [PATCH] Add running black on all Python files --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 0ae63a2..34359a7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,8 @@ pipeline { stage('Build') { steps { echo 'Building..' + // Run black to format all Python files + sh 'find . -name "*.py" -exec black {} +' } } stage('Test') {