From b614cbd6fb1e300f8dd7401a195a742960a10327 Mon Sep 17 00:00:00 2001 From: Jennifer Power Date: Wed, 26 Jul 2023 15:04:01 -0400 Subject: [PATCH] chore: updates code coverage threshold to 80 Signed-off-by: Jennifer Power --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e555af4d..e93890f3 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ test: .PHONY: test test-code-cov: - @poetry run pytest --cov=trestlebot --exitfirst --cov-config=pyproject.toml --cov-report=xml --cov-fail-under=85 + @poetry run pytest --cov=trestlebot --exitfirst --cov-config=pyproject.toml --cov-report=xml --cov-fail-under=80 .PHONY: test-code-cov # https://github.com/python-poetry/poetry/issues/994#issuecomment-831598242