|
@@ -4,7 +4,7 @@ PIP := $(PYTHON) -m pip
|
|
|
PROJECT_NAME := embedchain
|
|
|
|
|
|
# Targets
|
|
|
-.PHONY: install format lint clean test ci_lint ci_test
|
|
|
+.PHONY: install format lint clean test ci_lint ci_test coverage
|
|
|
|
|
|
install:
|
|
|
poetry install
|
|
@@ -39,3 +39,6 @@ ci_lint:
|
|
|
|
|
|
ci_test:
|
|
|
poetry run pytest
|
|
|
+
|
|
|
+coverage:
|
|
|
+ poetry run pytest --cov=$(PROJECT_NAME) --cov-report=xml
|