Skip to content

Commit 05f6274

Browse files
Call tests via correct env in CI
1 parent 5fa399a commit 05f6274

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/CI-build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@ jobs:
2929
- name: Install Tox and any other packages
3030
run: pip install tox
3131
- name: Run Tox
32-
# Run tox using the version of Python in `PATH`
33-
run: tox -e py3
34-
env:
35-
PROBNUM_BACKEND: ${{ matrix.backend }}
32+
# Run tox using the version of Python in `PATH` and the corresponding compute backend
33+
run: tox -e py3-${{ matrix.backend }}
3634
- name: Upload coverage report to Codecov
3735
if: startsWith(matrix.platform,'ubuntu') && matrix.python == '3.8' && matrix.backend == 'numpy'
3836
run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)