Show coverage and quality reports for just the committed diff

This commit is contained in:
hugovk 2014-06-28 11:02:09 +03:00
parent be61256222
commit 254d64cf8b

View File

@ -41,6 +41,13 @@ script:
after_success:
- coverage report
- coveralls
- pip install diff_cover
- coverage xml
- diff-cover coverage.xml
- diff-quality --violation=pep8
- diff-quality --violation=pyflakes
- pip install pep8 pyflakes
- pep8 --statistics --count PIL/*.py
- pep8 --statistics --count Tests/*.py