We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba7f973 commit 00c8097Copy full SHA for 00c8097
.github/workflows/main.yml
@@ -165,23 +165,15 @@ jobs:
165
- uses: actions/checkout@v4
166
with:
167
persist-credentials: false
168
- - name: Set up Python
169
- uses: actions/setup-python@v5
170
- with:
171
- python-version: "3"
172
- - name: Check Python version
173
- run: python --version --version
174
- name: Install graphviz
175
run: choco install --no-progress graphviz
176
- name: Install uv
177
uses: astral-sh/setup-uv@v6
178
179
version: latest
180
enable-cache: false
181
- - name: Install dependencies
182
- run: uv pip install . --group test
183
- name: Test with pytest
184
- run: python -m pytest -vv --durations 25
+ run: uv run pytest -vv --durations 25
185
env:
186
PYTHONWARNINGS: "error" # treat all warnings as errors
187
0 commit comments