OpenMC/tools/ci/travis-script.sh

10 lines
160 B
Bash
Raw Permalink Normal View History

2019-10-28 11:55:45 -05:00
#!/bin/bash
set -ex
# Run regression and unit tests
if [[ $MPI == 'y' ]]; then
pytest --cov=openmc -v --mpi tests
else
pytest --cov=openmc -v tests
fi