diff --git a/Makefile b/Makefile index 4775771..eee7284 100644 --- a/Makefile +++ b/Makefile @@ -52,10 +52,16 @@ clean-test: ## remove test and coverage artifacts lint: ## check style with flake8 flake8 ordr -test: ## run tests quickly with the default Python +test: ## run tests quickly with the default Python, ignoring functional tests py.test coverage: ## check code coverage quickly with the default Python + coverage run --source ordr -m pytest --ignore ordr/tests/_functional/ + coverage report -m + coverage html + $(BROWSER) htmlcov/index.html + +fcoverage: ## check code coverage with the default Python and functional tests coverage run --source ordr -m pytest coverage report -m coverage html