File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 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 test
264264 pushd ${{ env.CUDA_CORE_CYTHON_TESTS_DIR }}
265265 bash build_tests.sh
266266 popd
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments