Skip to content

Commit 0edd353

Browse files
committed
added coverage and updates clean in Makefile
1 parent 044bcae commit 0edd353

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.coverage

-27.6 KB
Binary file not shown.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
notes.txt
2-
.coverage
32
/.idea
43
/.tox
54
docs/build/

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,13 @@ test:
1717
export PYTHONPATH=${PYTHONPATH}
1818
coverage run demo/manage.py test concurrency --settings=${DJANGO_SETTINGS_MODULE}
1919

20+
coverage:
21+
export PYTHONPATH=${PYTHONPATH}
22+
coverage run demo/manage.py test concurrency --settings=${DJANGO_SETTINGS_MODULE}
23+
coverage report
24+
2025
clean:
21-
rm -fr ${BUILDDIR}/
26+
rm -fr ${BUILDDIR} dist *.egg-info .coverage
2227
find concurrency/locale -name django.mo | xargs rm -f
2328

2429
.PHONY: docs

0 commit comments

Comments
 (0)