Skip to content

Commit 7e8a0e3

Browse files
Add uv.lock
1 parent 7cef925 commit 7e8a0e3

File tree

3 files changed

+1445
-202
lines changed

3 files changed

+1445
-202
lines changed

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,10 @@ known-third-party = ["typer", "fastapi"]
121121
[tool.ruff.lint.pyupgrade]
122122
# Preserve types, even if a file imports `from __future__ import annotations`.
123123
keep-runtime-typing = true
124+
125+
[dependency-groups]
126+
dev = [
127+
"coverage>=7.6.1",
128+
"pytest>=8.3.5",
129+
"respx>=0.22.0",
130+
]

tests/test_cli_new.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,5 @@ def test_validate_pyproject_toml_contents(self, temp_project_dir):
119119

120120
pyproject_content = (project_path / "pyproject.toml").read_text()
121121
assert 'name = "test-project"' in pyproject_content
122-
assert 'fastapi[standard]' in pyproject_content
122+
assert 'fastapi[standard]' in pyproject_content
123+

0 commit comments

Comments
 (0)