From 3e8edd329b7ebc216d15b9d2119d35a0fbb76b62 Mon Sep 17 00:00:00 2001 From: Nathan Loria Date: Fri, 15 Apr 2022 19:49:55 -0400 Subject: [PATCH] Changed codecov threshold --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0db8714..a974a2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ pythonpath = [ [tool.taskipy.tasks] lint = { cmd = "black gcc_exec socket_service --check;flake8 gcc_exec socket_service --ignore=E501,W503;pylint gcc_exec socket_service", help = "Run the black checks for source code format" } -test = { cmd = "pytest --cov gcc_exec --cov-report xml:coverage.xml", help = "Run the test suite to ensure code correctness" } +test = { cmd = "pytest --cov gcc_exec --cov-report xml:coverage.xml --cov-fail-under 50", help = "Run the test suite to ensure code correctness" } [build-system] requires = ["poetry-core>=1.0.0"]