We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d994c50 commit 6dbc9c3Copy full SHA for 6dbc9c3
2 files changed
.github/workflows/ci.yml
@@ -23,9 +23,7 @@ jobs:
23
version: "latest"
24
25
- name: Install dependencies
26
- run: |
27
- uv sync
28
- uv sync --group test
+ run: uv sync --all-groups
29
30
- name: Install Playwright browsers
31
run: uv run playwright install chromium --with-deps
pyproject.toml
@@ -48,3 +48,10 @@ target-version = "py310"
48
python_version = "3.10"
49
ignore_missing_imports = true
50
strict_optional = true
51
+
52
+[tool.uv]
53
+dependency-groups.test = [
54
+ "pytest>=7.0",
55
+ "pytest-asyncio>=0.23",
56
+ "pytest-mock>=3.10",
57
+]
0 commit comments