Skip to content
Snippets Groups Projects
Commit f5e8bd96 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Merge pull request #577 from wenqing/pFEM1

[TR] Only run MPI related tests under condition PETSC.
parents 491f53b6 255aa203
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,8 @@ script: ...@@ -55,7 +55,8 @@ script:
- cd build - cd build
- cmake $CMAKE_ARGS .. - cmake $CMAKE_ARGS ..
- make - make
- ./bin/testrunner --gtest_filter=-MPITest* --gtest_shuffle --gtest_repeat=3 - if [[ "$CASE" != "CLI_PETSC" ]]; then ./bin/testrunner --gtest_filter=-MPITest* --gtest_shuffle --gtest_repeat=3; fi
# PetSc
- if [[ "$CASE" == "CLI_PETSC" ]]; then make tests_mpi; fi - if [[ "$CASE" == "CLI_PETSC" ]]; then make tests_mpi; fi
notifications: notifications:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment