Add coveragerc and update Makefile

This commit is contained in:
Vinayak Mehta
2016-08-08 17:24:13 +05:30
parent 814d7b6939
commit 8ff04391b7
4 changed files with 150 additions and 135 deletions
+6
View File
@@ -0,0 +1,6 @@
[run]
branch = True
source = camelot
include = */camelot/*
omit =
*/setup.py
+9
View File
@@ -1,6 +1,15 @@
PYTHON ?= python
NOSETESTS ?= nosetests
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " clean"
@echo " dev to install in develop mode"
@echo " undev to uninstall develop mode"
@echo " install to install for all users"
@echo " test to run tests"
@echo " test-coverage to run tests with coverage report"
clean:
$(PYTHON) setup.py clean
rm -rf dist