Browse Source

ignoring scripts for simple coverage

rework
Holger Frey 7 years ago
parent
commit
8dbf43ea99
  1. 4
      Makefile

4
Makefile

@ -57,8 +57,8 @@ test: ## run tests quickly with the default Python, ignoring functional tests @@ -57,8 +57,8 @@ test: ## run tests quickly with the default Python, ignoring functional tests
coverage: ## check code coverage quickly with the default Python
coverage run --source ordr -m pytest --ignore tests/_functional/
coverage report -m
coverage html
coverage report -m --omit=ordr/scripts/*
coverage html --omit=ordr/scripts/*
$(BROWSER) htmlcov/index.html
fcoverage: ## check code coverage with the default Python and functional tests