diff --git a/Makefile b/Makefile index 06edc61..28a36e5 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ test-format: ## Run code formatting tests black --check --diff $(BLACK_OPTS) test-lint: ## Run code linting tests - pylint --errors-only --ignore=templates ${SRC_DIRS} + pylint --errors-only --enable=unused-import --ignore=templates ${SRC_DIRS} test-unit: ## Run unit tests python -m unittest discover tests