1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-03-01 03:13:30 +00:00
scrapy/extras/coverage-report.sh

8 lines
265 B
Bash
Raw Normal View History

# 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