diff --git a/.gitignore b/.gitignore index e120451..631a451 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,6 @@ var/ .volumes # Coverage report +.coverage coverage.lcov +htmlcov/ diff --git a/Makefile b/Makefile index 27f7d0a..1b1bc9f 100644 --- a/Makefile +++ b/Makefile @@ -148,9 +148,13 @@ type-check: ## Run the type-checker mypy start-local-db: ## Run the local db as docker container docker compose up -d +.PHONY: test-ci +test-ci: ## Run tests in the CI + $(TEST) --cov --cov-report=lcov + .PHONY: test test: ## Run tests locally - $(TEST) --cov --cov-report=lcov + $(TEST) --cov --cov-report=html .PHONY: setup-bod setup-bod: ## Set up the bod locally