mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 05:35:49 -04:00
10 lines
160 B
Bash
10 lines
160 B
Bash
|
|
#!/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
|