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.
coverage
clean
1 parent 044bcae commit 0edd353Copy full SHA for 0edd353
.coverage
-27.6 KB
.gitignore
@@ -1,5 +1,4 @@
1
notes.txt
2
-.coverage
3
/.idea
4
/.tox
5
docs/build/
Makefile
@@ -17,8 +17,13 @@ test:
17
export PYTHONPATH=${PYTHONPATH}
18
coverage run demo/manage.py test concurrency --settings=${DJANGO_SETTINGS_MODULE}
19
20
+coverage:
21
+ export PYTHONPATH=${PYTHONPATH}
22
+ coverage run demo/manage.py test concurrency --settings=${DJANGO_SETTINGS_MODULE}
23
+ coverage report
24
+
25
clean:
- rm -fr ${BUILDDIR}/
26
+ rm -fr ${BUILDDIR} dist *.egg-info .coverage
27
find concurrency/locale -name django.mo | xargs rm -f
28
29
.PHONY: docs
0 commit comments