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