From dfa6f7e0beee94c2447485f1fc8d1165354de0db Mon Sep 17 00:00:00 2001 From: KEriks Date: Mon, 30 Aug 2021 16:36:05 +0300 Subject: [PATCH] Changed linting make command --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2e9d3ee..5047a96 100644 --- a/Makefile +++ b/Makefile @@ -52,8 +52,9 @@ clean-test: ## remove test and coverage artifacts rm -fr .pytest_cache lint: ## check style with flake8 - black erepublik tests - flake8 erepublik tests + isort erepublik examples tests + black erepublik examples tests + flake8 erepublik examples tests test: ## run tests quickly with the default Python python -m unittest