Skip to content

Commit ad0270a

Browse files
committed
update pytest-cov to version 6.2.1 in various configuration files
1 parent 0d3c92d commit ad0270a

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

poetry.lock

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ setuptools = "^80.9.0"
2626

2727
[tool.poetry.group.dev.dependencies]
2828
pytest = "^8.4.1"
29-
pytest-cov = "^6.0.1"
29+
pytest-cov = "^6.2.1"
3030

3131
[build-system]
3232
requires = ["poetry-core"]

{{cookiecutter.project_slug}}/environment-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ channels:
99
dependencies:
1010
- python>=3.9
1111
- pytest>=8.4.1
12-
- pytest-cov>=6.0.1
12+
- pytest-cov>=6.2.1
1313
- pre-commit>=4.3.0
1414
- isort>=6.0.0{% if cookiecutter.use_notebooks == 'yes' %}
1515
- jupyterlab>=4.3.5{% endif %}

{{cookiecutter.project_slug}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ typer = "^0.16.1"
2121

2222
[tool.poetry.group.test.dependencies]
2323
pytest = "^8.4.1"
24-
pytest-cov = "^6.0.1"
24+
pytest-cov = "^6.2.1"
2525

2626
[tool.poetry.group.linter.dependencies]
2727
{%- if cookiecutter.code_formatter == 'black' %}
@@ -108,7 +108,7 @@ linter = [
108108
{%- endif %}
109109
"isort>=5.12.0"
110110
]
111-
test = ["pytest>=8.4.1", "pytest-cov>=6.0.1"]
111+
test = ["pytest>=8.4.1", "pytest-cov>=6.2.1"]
112112

113113
[tool.isort]
114114
{%- if cookiecutter.code_formatter == 'black' %}

{{cookiecutter.project_slug}}/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
black~=25.1.0{% endif %}
55
pre-commit~=4.3.0
66
pytest~=8.4.1
7-
pytest-cov~=6.0.1
7+
pytest-cov~=6.2.1
88
wheel~=0.45.1

0 commit comments

Comments
 (0)