repo.or.cz
/
mygpo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix subscriber counts in podcast toplist/search results
[mygpo.git]
/
makefile
blob
1fd54394d247106c7ce6e6f0128a4397fe848d80
1
all
:
help
2
3
help
:
4
@echo
'make test run tests and show coverage report'
5
@echo
'make clean clean up files'
6
7
test
:
8
envdir envs
/
dev
/
coverage run .
/
manage.py
test
9
coverage report
10
11
clean
:
12
find
-
name
"*.pyc"
-
exec
rm
'{}'
\
;
13
14
15
.PHONY
:
all
help
test clean
unittest coverage
16