From fb1edf8055b0c4b1e72e03159b64e303b7af6256 Mon Sep 17 00:00:00 2001 From: dalmiromaia <dmaia@fc.up.pt> Date: Tue, 9 Nov 2021 20:09:08 +0000 Subject: [PATCH] ST-946 disable isort and black linting --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7cd207c0..4a35193b 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,11 @@ SHELL = /bin/bash # PROJECT to give a final Docker tag of artefact.skao.int/ska-tango-base PROJECT = ska-tango-base IMAGE_FOR_DIAGRAMS = artefact.skao.int/ska-tango-images-pytango-builder:9.3.10 -PYTHON_BUILD_TYPE=tag_setup + +PYTHON_BUILD_TYPE = tag_setup +PYTHON_SWITCHES_FOR_ISORT = --skip tests --skip src -w 79 +PYTHON_SWITCHES_FOR_BLACK = --exclude src --exclude tests --line-length 79 + # # include makefile to pick up the standard Make targets, e.g., 'make build' # build, 'make push' docker push procedure, etc. The other Make targets -- GitLab