# single process
python3 -m pytest --junitxml=test-output test/

# MPI test
N_MPI=`nproc`
export OMPI_MCA_rmaps_base_oversubscribe=1
mpirun -n ${N_MPI} python3 -m pytest --junitxml=test-output test/
