set verbosity=1 for make test
This commit is contained in:
parent
5f487bbaee
commit
b3cffc5fca
4
Makefile
4
Makefile
|
|
@ -11,6 +11,8 @@ Available commands:
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
verbosity=1
|
||||||
|
|
||||||
export HELPBODY
|
export HELPBODY
|
||||||
help:
|
help:
|
||||||
@echo "$$HELPBODY"
|
@echo "$$HELPBODY"
|
||||||
|
|
@ -20,7 +22,7 @@ init:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
rm -f aprslib/*.pyc
|
rm -f aprslib/*.pyc
|
||||||
nosetests --verbosity 2 --with-coverage --cover-package=aprslib
|
nosetests --verbosity $(verbosity) --with-coverage --cover-package=aprslib
|
||||||
|
|
||||||
pylint:
|
pylint:
|
||||||
pylint -r n -f colorized aprslib || true
|
pylint -r n -f colorized aprslib || true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue