From 45216a9b755ee9f843335ff1c152ee79035999a6 Mon Sep 17 00:00:00 2001 From: Nikolas Nyby Date: Wed, 22 Oct 2025 13:38:19 -0400 Subject: [PATCH] Remove unused bandit from makefile --- django.mk | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/django.mk b/django.mk index 51b47dfd..c6a0db8f 100644 --- a/django.mk +++ b/django.mk @@ -31,11 +31,10 @@ MAX_COMPLEXITY ?= 10 INTERFACE ?= localhost RUNSERVER_PORT ?= 8000 PY_DIRS ?= $(APP) -BANDIT ?= $(VE)/bin/bandit FLAKE8 ?= $(VE)/bin/flake8 PIP ?= $(VE)/bin/pip -jenkins: check flake8 test bandit +jenkins: check flake8 test $(PY_SENTINAL): $(REQUIREMENTS) rm -rf $(VE) @@ -52,9 +51,6 @@ test: $(PY_SENTINAL) parallel-tests: $(PY_SENTINAL) $(MANAGE) test --parallel -bandit: $(PY_SENTINAL) - $(BANDIT) --ini ./.bandit -r $(PY_DIRS) - flake8: $(PY_SENTINAL) $(FLAKE8) $(PY_DIRS) --max-complexity=$(MAX_COMPLEXITY) --exclude=*/local_settings.py,*/migrations/*.py --extend-ignore=$(FLAKE8_IGNORE)