Add coveragerc and update Makefile

pull/2/head
Vinayak Mehta 2016-08-08 17:24:13 +05:30
parent 814d7b6939
commit 8ff04391b7
4 changed files with 150 additions and 135 deletions

6
.coveragerc 100644
View File

@ -0,0 +1,6 @@
[run]
branch = True
source = camelot
include = */camelot/*
omit =
*/setup.py

View File

@ -1,6 +1,15 @@
PYTHON ?= python PYTHON ?= python
NOSETESTS ?= nosetests 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: clean:
$(PYTHON) setup.py clean $(PYTHON) setup.py clean
rm -rf dist rm -rf dist