@@ -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
@@ -44,9 +44,9 @@ elif [[ "${test_module}" == "bindings" ]]; then
4444 ls
4545 if [[ " ${LOCAL_CTK} " == 1 ]]; then
4646 ls " ${CUDA_PATH} "
47- pip install $( ls * .whl) [ test]
47+ pip install ./ * .whl --group test
4848 else
49- pip install $( ls * .whl) [all,test]
49+ pip install $( ls ./ * .whl) [all] --group test
5050 fi
5151 popd
5252 pushd ./cuda_bindings
@@ -66,9 +66,9 @@ elif [[ "${test_module}" == "core" ]]; then
6666 pwd
6767 ls
6868 if [[ " ${LOCAL_CTK} " == 1 ]]; then
69- pip install * .whl
69+ pip install ./ * .whl
7070 else
71- pip install $( ls * .whl) [all]
71+ pip install $( ls ./ * .whl) [all]
7272 fi
7373 popd
7474 fi
@@ -80,9 +80,9 @@ elif [[ "${test_module}" == "core" ]]; then
8080 if [[ " ${LOCAL_CTK} " == 1 ]]; then
8181 # We already installed cuda-bindings, and all CTK components exist locally,
8282 # so just install the test dependencies.
83- pip install $( ls * .whl) [ " test-cu${TEST_CUDA_MAJOR} " ]
83+ pip install ./ * .whl --group " test-cu${TEST_CUDA_MAJOR} "
8484 else
85- pip install $( ls * .whl) [" cu${TEST_CUDA_MAJOR} " , " test-cu${TEST_CUDA_MAJOR} " ]
85+ pip install $( ls ./ * .whl) [" cu${TEST_CUDA_MAJOR} " ] --group " test-cu${TEST_CUDA_MAJOR} "
8686 fi
8787 popd
8888 pushd ./cuda_core
0 commit comments