Tests: Disabled physics ocean test on macOS arm64

Test is failing and needs further investigation.
This commit is contained in:
2021-05-18 12:48:35 +02:00
parent aa06be9148
commit 53376ec7fc
+11 -8
View File
@@ -240,14 +240,17 @@ add_blender_test(
--run-all-tests
)
if(WITH_MOD_OCEANSIM)
add_blender_test(
physics_ocean
${TEST_SRC_DIR}/physics/ocean_test.blend
--python ${TEST_PYTHON_DIR}/physics_ocean.py
--
--run-all-tests
)
# disabled on macOS arm64 until updated & working
if(NOT (APPLE AND ("${CMAKE_OSX_ARCHITECTURES}" STREQUAL "arm64")))
if(WITH_MOD_OCEANSIM)
add_blender_test(
physics_ocean
${TEST_SRC_DIR}/physics/ocean_test.blend
--python ${TEST_PYTHON_DIR}/physics_ocean.py
--
--run-all-tests
)
endif()
endif()