From 44df9baeeeafde2207ea800f3c88a03858f28761 Mon Sep 17 00:00:00 2001 From: Afonso Mukai Date: Mon, 8 Aug 2022 14:47:53 +0200 Subject: [PATCH] Move black config --- Jenkinsfile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c58478330..6a54b7ded 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -55,7 +55,7 @@ builders = pipeline_builder.createBuilders { container -> cd ${project} export LC_ALL=en_US.utf-8 export LANG=en_US.utf-8 - build_env/bin/python -m black --extend-exclude '/(build_env|definitions|nx-class-documentation)/' . + build_env/bin/python -m black . git config user.email 'dm-jenkins-integration@esss.se' git config user.name 'cow-bot' git status -s diff --git a/pyproject.toml b/pyproject.toml index 2d8107c3b..23c281bbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,2 @@ [tool.black] -exclude = '/(build*|ui*|definitions*)' +exclude = '/(build*|ui*|definitions*|nx-class-documentation*)'