We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d485ff commit 346d666Copy full SHA for 346d666
1 file changed
.github/workflows/tests.yml
@@ -36,8 +36,9 @@ jobs:
36
- name: Install default (with full options) and test dependencies
37
run: uv pip install --python-version=${{ matrix.python-version }} -e '.[full]' --group test
38
- name: Run unit and doc tests with coverage report
39
- run: |
40
- PYTEST_TORCH_DEVICE=${{ matrix.device }} uv run pytest -W error tests/unit tests/doc --cov=src --cov-report=xml
+ env:
+ PYTEST_TORCH_DEVICE: ${{ matrix.torch_device }}
41
+ run: uv run pytest -W error tests/unit tests/doc --cov=src --cov-report=xml
42
- name: Upload results to Codecov
43
uses: codecov/codecov-action@v4
44
with:
0 commit comments