File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ local_settings.py
33* ~
44* .pyc
55ve
6- .coverage
76cover /
87media /CACHE
98reports /
Original file line number Diff line number Diff line change 1- # VERSION=1.9 .0
1+ # VERSION=1.10 .0
22
33# CHANGES:
4+ # 1.10.0 - 2025-10-16 - Removed coverage, updated dependencies.
45# 1.9.0 - Use coverage tool directly to generate coverage
56# reports.
67# - wheel and pip updates
@@ -32,7 +33,6 @@ PY_DIRS ?= $(APP)
3233BANDIT ?= $(VE ) /bin/bandit
3334FLAKE8 ?= $(VE ) /bin/flake8
3435PIP ?= $(VE ) /bin/pip
35- COVERAGE ?= $(VE ) /bin/coverage
3636
3737jenkins : check flake8 test bandit eslint
3838
@@ -46,8 +46,7 @@ $(PY_SENTINAL): $(REQUIREMENTS)
4646 touch $@
4747
4848test : $(PY_SENTINAL )
49- $(COVERAGE ) run --source=' .' --omit=$(VE ) /* $(MANAGE ) test $(PY_DIRS )
50- $(COVERAGE ) xml -o reports/coverage.xml
49+ $(MANAGE ) test $(PY_DIRS )
5150
5251parallel-tests : $(PY_SENTINAL )
5352 $(MANAGE ) test --parallel
7574 rm -rf media/CACHE
7675 rm -rf reports
7776 rm -f celerybeat-schedule
78- rm -f .coverage
7977 rm -rf node_modules
8078 find . -name ' *.pyc' -exec rm {} \;
8179
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ testtools==2.7.0
3232testscenarios == 0.5.0
3333python-subunit == 1.4.0
3434webencodings == 0.5.1
35- coverage == 7.11.0
3635pep8 == 1.7.1
3736pyflakes == 3.4.0
3837mccabe == 0.7.0
You can’t perform that action at this time.
0 commit comments