Skip to content

Commit 78a0fc3

Browse files
authored
Merge pull request #2738 from ccnmtl/removecoverage
Remove coverage
2 parents a0bbdc8 + e04cbd9 commit 78a0fc3

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ local_settings.py
33
*~
44
*.pyc
55
ve
6-
.coverage
76
cover/
87
media/CACHE
98
reports/

django.mk

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
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)
3233
BANDIT ?= $(VE)/bin/bandit
3334
FLAKE8 ?= $(VE)/bin/flake8
3435
PIP ?= $(VE)/bin/pip
35-
COVERAGE ?= $(VE)/bin/coverage
3636

3737
jenkins: check flake8 test bandit eslint
3838

@@ -46,8 +46,7 @@ $(PY_SENTINAL): $(REQUIREMENTS)
4646
touch $@
4747

4848
test: $(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

5251
parallel-tests: $(PY_SENTINAL)
5352
$(MANAGE) test --parallel
@@ -75,7 +74,6 @@ clean:
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

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ testtools==2.7.0
3232
testscenarios==0.5.0
3333
python-subunit==1.4.0
3434
webencodings==0.5.1
35-
coverage==7.11.0
3635
pep8==1.7.1
3736
pyflakes==3.4.0
3837
mccabe==0.7.0

0 commit comments

Comments
 (0)