Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@ VE ?= ./ve
REQUIREMENTS ?= test_reqs.txt
SYS_PYTHON ?= python3
PY_SENTINAL ?= $(VE)/sentinal
WHEEL_VERSION ?= 0.43.0
PIP_VERSION ?= 24.1.1
WHEEL_VERSION ?= 0.45.1
PIP_VERSION ?= 25.3
MAX_COMPLEXITY ?= 12
PY_DIRS ?= $(APP)
DJANGO ?= "Django==4.2.13"

FLAKE8 ?= $(VE)/bin/flake8
PIP ?= $(VE)/bin/pip
COVERAGE ?=$(VE)/bin/coverage

all: flake8 coverage
all: flake8

clean:
rm -rf $(VE)
Expand All @@ -35,7 +34,4 @@ test: $(REQUIREMENTS) $(PY_SENTINAL)
flake8: $(PY_SENTINAL)
$(FLAKE8) $(PY_DIRS) --max-complexity=$(MAX_COMPLEXITY) --exclude=*/migrations/*.py

coverage: $(PY_SENTINAL)
$(COVERAGE) run --source=courseaffils runtests.py

.PHONY: flake8 test jshint jscs clean
1 change: 0 additions & 1 deletion test_reqs.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Markdown==3.10 # pyup: <3.2
coverage==7.11.0
importlib_metadata<8.8
typing_extensions==4.15.0
zipp==3.23.0 # for flake8
Expand Down