CMakeLists.txt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. #
  8. if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS)
  9. ly_add_pytest(
  10. NAME AutomatedTesting::PhysicsTests_Main
  11. TEST_SUITE main
  12. TEST_SERIAL
  13. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Main.py
  14. RUNTIME_DEPENDENCIES
  15. Legacy::Editor
  16. AZ::AssetProcessor
  17. AutomatedTesting.Assets
  18. COMPONENT
  19. Physics
  20. )
  21. ly_add_pytest(
  22. NAME AutomatedTesting::PhysicsTests_Periodic
  23. TEST_SUITE periodic
  24. TEST_SERIAL
  25. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Periodic.py
  26. RUNTIME_DEPENDENCIES
  27. Legacy::Editor
  28. AZ::AssetProcessor
  29. AutomatedTesting.Assets
  30. COMPONENT
  31. Physics
  32. )
  33. ly_add_pytest(
  34. NAME AutomatedTesting::PhysicsTests_Sandbox
  35. TEST_SUITE sandbox
  36. TEST_SERIAL
  37. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Sandbox.py
  38. RUNTIME_DEPENDENCIES
  39. Legacy::Editor
  40. AZ::AssetProcessor
  41. AutomatedTesting.Assets
  42. COMPONENT
  43. Physics
  44. )
  45. endif()