Setup codecov.io to measure test coverage #696 (#739)

This commit is contained in:
Rajat Gupta
2023-09-30 23:56:49 +05:30
committed by GitHub
parent 28d41e9397
commit 57ecfca862
4 changed files with 15 additions and 2 deletions

View File

@@ -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