Remove gmxapi roadmap.rst and acceptance tests.
[alexxy/gromacs.git] / admin / ci-scripts / build-and-test-py-gmxapi-0.3.sh
index e33fb3faaa8ace41e9f44b0bda7e04d2cde1fedb..556b4ccecdc804d03cb92ad7e4c21c9b85e5f0b5 100644 (file)
@@ -59,25 +59,3 @@ if [ -x `which mpiexec` ]; then
       -n 1 ${PROGRAM[@]} --junitxml=$PLUGIN_MPI_TEST_XML : \
       -n 1 ${PROGRAM[@]}
 fi
-
-# Run Python acceptance tests.
-python -m pytest python_packaging/test --junitxml=$PY_ACCEPTANCE_TEST_XML --threads=2
-
-# Note: Multiple pytest processes getting --junitxml output file argument
-# may cause problems, so we set the option on only one of the launched processes.
-# See also Multiple Instruction Multiple Data Model for OpenMPI mpirun:
-# https://www.open-mpi.org/doc/v3.0/man1/mpiexec.1.php
-PROGRAM=(`which python` -m mpi4py -m pytest \
-        -p no:cacheprovider \
-        $PWD/python_packaging/test \
-        --threads=1)
-# shellcheck disable=SC2068
-if [ -x `which mpiexec` ]; then
-    PYTHONDONTWRITEBYTECODE=1 \
-    mpiexec --allow-run-as-root \
-      -x OMP_NUM_THREADS=1 \
-      --mca opal_warn_on_missing_libcuda 0 \
-      --mca orte_base_help_aggregate 0 \
-      -n 1 ${PROGRAM[@]} --junitxml=$PLUGIN_MPI_TEST_XML : \
-      -n 1 ${PROGRAM[@]}
-fi