mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-29 18:44:43 +00:00
Improved test options.
This commit is contained in:
parent
bfe79e478f
commit
5e96ae0e76
1 changed files with 7 additions and 1 deletions
8
Makefile
8
Makefile
|
|
@ -29,6 +29,12 @@ else
|
|||
NOSETESTS:=$(shell which nosetests)
|
||||
CHMODMINUSMINUS:=--
|
||||
endif
|
||||
# Nose options:
|
||||
# - do not show output of successful tests
|
||||
# - be verbose
|
||||
# - only run test_* methods
|
||||
NOSEOPTS:=--logging-clear-handlers -v -m '^test_.*'
|
||||
|
||||
|
||||
.PHONY: all
|
||||
all:
|
||||
|
|
@ -229,7 +235,7 @@ sign_distfiles:
|
|||
|
||||
.PHONY: test
|
||||
test: localbuild
|
||||
$(PYTHON) $(NOSETESTS) -v -m "^test_.*" $(TESTOPTS) $(TESTS)
|
||||
$(PYTHON) $(NOSETESTS) $(NOSEOPTS) $(TESTOPTS) $(TESTS)
|
||||
|
||||
.PHONY: pyflakes
|
||||
pyflakes:
|
||||
|
|
|
|||
Loading…
Reference in a new issue