Skip to content

Commit c23fb7c

Browse files
committed
ci: fixup group usage
1 parent 03d6330 commit c23fb7c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ jobs:
246246
247247
- name: Build cuda.bindings Cython tests
248248
run: |
249-
pip install $(ls ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}/*.whl)[test]
249+
pip install ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}/*.whl --group ./cuda_bindings/pyproject.toml:test
250250
pushd ${{ env.CUDA_BINDINGS_CYTHON_TESTS_DIR }}
251251
bash build_tests.sh
252252
popd
@@ -260,7 +260,7 @@ jobs:
260260

261261
- name: Build cuda.core Cython tests
262262
run: |
263-
pip install $(ls ${{ env.CUDA_CORE_ARTIFACTS_DIR }}/*.whl)[test]
263+
pip install ${{ env.CUDA_CORE_ARTIFACTS_DIR }}/*.whl --group ./cuda_core/pyproject.toml:test
264264
pushd ${{ env.CUDA_CORE_CYTHON_TESTS_DIR }}
265265
bash build_tests.sh
266266
popd

.github/workflows/test-wheel-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ jobs:
283283
run: |
284284
set -euo pipefail
285285
pushd cuda_pathfinder
286-
pip install --only-binary=:all: -v ".[test_nvidia_wheels_cu${TEST_CUDA_MAJOR},test_nvidia_wheels_host]"
286+
pip install --only-binary=:all: -v . --group "test_nvidia_wheels_cu${TEST_CUDA_MAJOR}" --group test_nvidia_wheels_host
287287
pip list
288288
popd
289289

.github/workflows/test-wheel-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ jobs:
256256
shell: bash --noprofile --norc -xeuo pipefail {0}
257257
run: |
258258
pushd cuda_pathfinder
259-
pip install --only-binary=:all: -v ".[test_nvidia_wheels_cu${TEST_CUDA_MAJOR},test_nvidia_wheels_host]"
259+
pip install --only-binary=:all: -v . --group "test_nvidia_wheels_cu${TEST_CUDA_MAJOR}" --group test_nvidia_wheels_host
260260
pip list
261261
popd
262262

0 commit comments

Comments
 (0)