@@ -34,7 +34,7 @@ while [[ $# -gt 0 ]]; do
3434done
3535
3636CURRENT_ARCH=$( uname -m)
37- PYTHON_VERSIONS=(" 3.10 " " 3. 11" " 3.12" " 3.13" )
37+ PYTHON_VERSIONS=(" 3.11" " 3.12" " 3.13" )
3838TARGETS=(" nvidia" " nvidia --option fp64" , " qpp-cpu" )
3939
4040# OpenBLAS can get bogged down on some machines if using too many threads.
@@ -46,11 +46,7 @@ run_python_tests() {
4646
4747 echo " Running Python tests for Python ${python_version} with default target..."
4848
49- if [[ $python_version == " 3.10" ]]; then
50- python3 -m pytest libs -v --ignore libs/qec/python/tests/test_tensor_network_decoder.py
51- else
52- python3 -m pytest libs -v
53- fi
49+ python3 -m pytest libs -v
5450
5551 local test_result=$?
5652 if [ ${test_result} -ne 0 ]; then
@@ -81,11 +77,7 @@ test_examples() {
8177 conda activate $conda_name
8278 pip install pypiserver
8379 pypi-server run -p 8080 /root/wheels &
84- if [[ $python_version == " 3.10" ]]; then
85- pip install cudaq-qec --extra-index-url http://localhost:8080
86- else
87- pip install cudaq-qec[tensor_network_decoder] --extra-index-url http://localhost:8080
88- fi
80+ pip install cudaq-qec[tensor_network_decoder] --extra-index-url http://localhost:8080
8981 pip install cudaq-solvers[gqe] --extra-index-url http://localhost:8080
9082 source $CONDA_PREFIX /lib/python${python_version} /site-packages/distributed_interfaces/activate_custom_mpi.sh
9183 export OMPI_MCA_opal_cuda_support=true OMPI_MCA_btl=' ^openib'
0 commit comments