Add coverage to development dependencies in pyproject.toml and requirements-dev.txt.

This commit is contained in:
gandeevanr
2024-10-09 19:00:53 -07:00
parent d6829e9794
commit be94138a5a
2 changed files with 4 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ dependencies = ['typing-extensions >=4.6.0,!=4.7.0']
dynamic = ['readme', 'version']
[project.optional-dependencies]
dev = ["mypy==1.11.0", "pytest==8.3.1", "pytest-cov==5.0.0", "ruff==0.5.4"]
dev = ["mypy==1.11.0", "pytest==8.3.1", "pytest-cov==5.0.0", "ruff==0.5.4", "coverage==7.6.1"]
[project.urls]
Homepage = "https://github.com/penberg/limbo"

View File

@@ -1,5 +1,7 @@
coverage==7.6.1
# via pytest-cov
# via
# limbo (pyproject.toml)
# pytest-cov
iniconfig==2.0.0
# via pytest
mypy==1.11.0