Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading