moved coverage report script to extras/

This commit is contained in:
Pablo Hoffman 2010-12-15 12:08:59 -02:00
parent 432251bedd
commit 87aa63da2b
2 changed files with 7 additions and 13 deletions

View File

@ -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}"

7
extras/coverage-report.sh Executable file
View File

@ -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