From f36191274f8f4d62f758ae33d15428fdc8f7c6a5 Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Tue, 6 Aug 2019 10:08:23 +0200 Subject: [PATCH] make: run flake8 during style check as well --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8368ea2cf..cf105fd1b 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,8 @@ pystyle: ## apply code style on application sources and tests @isort $(PY_FILES) @echo [BLACK] @black $(PY_FILES) + @echo [FLAKE8] + @flake8 $(PY_FILES) make -C python style cstyle_check: ## run code style check on low-level C code