We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d4f7d6 commit 97dc405Copy full SHA for 97dc405
.github/workflows/python-ci.yml
@@ -22,13 +22,14 @@ jobs:
22
uses: astral-sh/setup-uv@v5
23
with:
24
version: "0.7.3"
25
- cache: true
+ enable-cache: true
26
27
- name: Install dependencies
28
run: uv sync --frozen --all-extras --dev
29
30
- name: Run pytest
31
- run: uv run pytest -v
+ # Skip real API validation tests
32
+ run: uv run pytest -v -m "not integration"
33
34
- name: Run ruff format check
- run: uv run ruff format --check .
35
+ run: uv run ruff format --check .
0 commit comments