We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95ef900 + 45216a9 commit 9f499c4Copy full SHA for 9f499c4
django.mk
@@ -31,11 +31,10 @@ MAX_COMPLEXITY ?= 10
31
INTERFACE ?= localhost
32
RUNSERVER_PORT ?= 8000
33
PY_DIRS ?= $(APP)
34
-BANDIT ?= $(VE)/bin/bandit
35
FLAKE8 ?= $(VE)/bin/flake8
36
PIP ?= $(VE)/bin/pip
37
38
-jenkins: check flake8 test bandit
+jenkins: check flake8 test
39
40
$(PY_SENTINAL): $(REQUIREMENTS)
41
rm -rf $(VE)
@@ -52,9 +51,6 @@ test: $(PY_SENTINAL)
52
51
parallel-tests: $(PY_SENTINAL)
53
$(MANAGE) test --parallel
54
55
-bandit: $(PY_SENTINAL)
56
- $(BANDIT) --ini ./.bandit -r $(PY_DIRS)
57
-
58
flake8: $(PY_SENTINAL)
59
$(FLAKE8) $(PY_DIRS) --max-complexity=$(MAX_COMPLEXITY) --exclude=*/local_settings.py,*/migrations/*.py --extend-ignore=$(FLAKE8_IGNORE)
60
0 commit comments