Merge pull request #220 from lbryio/add-coverage

Add coverage reporting
This commit is contained in:
Job Evers‐Meltzer 2016-10-30 16:05:46 -05:00 committed by GitHub
commit 72078f4af3

View file

@ -38,9 +38,10 @@ rm get-pip.py
pip install -r requirements.txt
pip install mock pylint
trial tests
# TODO: submit coverage report to coveralls
pip install mock pylint coveralls
# have to do `which trial` instead of simply trial because coverage needs the full path
coverage run --source=lbrynet `which trial` tests
coveralls
# Ignoring distutils because: https://github.com/PyCQA/pylint/issues/73
# TODO: as code quality improves, make pylint be more strict