Skip to content

Commit 6684295

Browse files
authored
chores(tooling): update uv lock (#1886)
1 parent 8f516ce commit 6684295

File tree

3 files changed

+940
-807
lines changed

3 files changed

+940
-807
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ lint = ["ruff==0.11.8", "mypy>=1.15.0,<1.16", "types-requests>=2.31,<2.33"]
6565
docs = [
6666
"cairosvg>=2.7.0,<3",
6767
"codespell>=2.4.1,<3",
68+
"markdown==3.8",
6869
"mike>=1.1.2,<2",
6970
"mkdocs>=1.4.3,<2",
7071
"mkdocs-click>=0.8,<1",

src/pytest_plugins/filler/static_filler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def get_all_combinations_from_parametrize_marks(
9292
for param_set in combination:
9393
values.extend(param_set.values)
9494
marks.extend(param_set.marks)
95-
test_id = "-".join([param.id or "" for param in combination])
95+
test_id = "-".join([param.id or "" for param in combination]) # type: ignore[misc]
9696
if test_id in test_ids:
9797
current_int = 2
9898
while f"{test_id}-{current_int}" in test_ids:

0 commit comments

Comments
 (0)