diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9b5b7bed9a..ab3751beb8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,5 +37,4 @@ jobs: run: git lfs pull - name: Run pytest - # TODO: Dummy coverage (branch: 0%) is needed for the pass rate. Increase this - run: poetry run pytest --cov=. --cov-branch --cov-fail-under=0 + run: poetry run pytest diff --git a/pyproject.toml b/pyproject.toml index 7050975fb0..13d6bc2197 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,9 @@ profile = "black" [tool.poetry.scripts] unblob = "unblob.cli:main" +[tool.pytest.ini_options] +addopts = "--cov=. --cov-branch --cov-fail-under=90" + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"