@@ -26,7 +26,7 @@ pushd ./cuda_pathfinder
2626echo " Installing pathfinder wheel"
2727pwd
2828ls
29- pip install $( ls * .whl) [ test]
29+ pip install ./ * .whl --group test
3030popd
3131
3232if [[ " ${test_module} " == " pathfinder" ]]; then
@@ -47,9 +47,9 @@ elif [[ "${test_module}" == "bindings" ]]; then
4747 ls
4848 if [[ " ${LOCAL_CTK} " == 1 ]]; then
4949 ls " ${CUDA_PATH} "
50- pip install $( ls * .whl) [ test]
50+ pip install ./ * .whl --group test
5151 else
52- pip install $( ls * .whl) [all,test]
52+ pip install $( ls ./ * .whl) [all] --group test
5353 fi
5454 popd
5555 pushd ./cuda_bindings
@@ -69,9 +69,9 @@ elif [[ "${test_module}" == "core" ]]; then
6969 pwd
7070 ls
7171 if [[ " ${LOCAL_CTK} " == 1 ]]; then
72- pip install * .whl
72+ pip install ./ * .whl
7373 else
74- pip install $( ls * .whl) [all]
74+ pip install $( ls ./ * .whl) [all]
7575 fi
7676 popd
7777 fi
@@ -89,9 +89,9 @@ elif [[ "${test_module}" == "core" ]]; then
8989 if [[ " ${LOCAL_CTK} " == 1 ]]; then
9090 # We already installed cuda-bindings, and all CTK components exist locally,
9191 # so just install the test dependencies.
92- pip install $( ls * .whl) [ " test-cu${TEST_CUDA_MAJOR}${FREE_THREADING} " ]
92+ pip install ./ * .whl --group " test-cu${TEST_CUDA_MAJOR}${FREE_THREADING} "
9393 else
94- pip install $( ls * .whl) [" cu${TEST_CUDA_MAJOR} " , " test-cu${TEST_CUDA_MAJOR}${FREE_THREADING} " ]
94+ pip install $( ls ./ * .whl) [" cu${TEST_CUDA_MAJOR} " ] --group " test-cu${TEST_CUDA_MAJOR}${FREE_THREADING} "
9595 fi
9696 popd
9797 pushd ./cuda_core
0 commit comments