mirror of https://github.com/scrapy/scrapy.git
moved coverage report script to extras/
This commit is contained in:
parent
432251bedd
commit
87aa63da2b
|
|
@ -1,5 +1,4 @@
|
|||
TRIAL := $(shell which trial)
|
||||
COVERAGE_DIR ?= "htmlcov"
|
||||
|
||||
deb:
|
||||
python extras/makedeb.py build
|
||||
|
|
@ -7,15 +6,3 @@ deb:
|
|||
deb-clean:
|
||||
debclean
|
||||
python extras/makedeb.py clean
|
||||
|
||||
# Generate coverage reports
|
||||
# Requires: coverage 3.3 or above from http://pypi.python.org/pypi/coverage
|
||||
coverage-report:
|
||||
coverage run --branch ${TRIAL} --reporter=text scrapy.tests
|
||||
coverage html -i -d "${COVERAGE_DIR}"
|
||||
|
||||
coverage-view: coverage-report
|
||||
python -m webbrowser "${COVERAGE_DIR}"
|
||||
|
||||
coverage-clean:
|
||||
rm -rf .coverage "${COVERAGE_DIR}"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
# Run tests, generate coverage report and open it on a browser
|
||||
#
|
||||
# Requires: coverage 3.3 or above from http://pypi.python.org/pypi/coverage
|
||||
|
||||
coverage run --branch $(which trial) --reporter=text scrapy.tests
|
||||
coverage html -i
|
||||
python -m webbrowser htmlcov/index.html
|
||||
Loading…
Reference in New Issue