diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bf815f..9b45bdf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,4 +36,4 @@ jobs: run: cmake --build build - name: Run tests - run: cd build && ctest --output-on-failure + run: cd build && ctest --output-on-failure --timeout 120 diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e4e0fe..4783c66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -282,6 +282,8 @@ else() endif() endif() add_test(NAME Phase8PhysicsInformedTest COMMAND Phase8PhysicsInformedTest) +# Takes 16+ minutes on CI - too slow for regular CI runs +set_tests_properties(Phase8PhysicsInformedTest PROPERTIES DISABLED true) # Phase 8 Comprehensive Physics-Informed Neural Networks Test executable add_executable(Phase8PhysicsComprehensiveTest tests/test_phase8_physics_comprehensive.cpp)