CMakeLists.txt 1005 B

123456789101112131415161718192021222324252627282930313233343536373839
  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::TerrainTests_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. Terrain
  20. LABELS REQUIRES_tiaf
  21. )
  22. ly_add_pytest(
  23. NAME AutomatedTesting::TerrainTests_Periodic
  24. TEST_SUITE periodic
  25. TEST_SERIAL
  26. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Periodic.py
  27. RUNTIME_DEPENDENCIES
  28. Legacy::Editor
  29. AZ::AssetProcessor
  30. AutomatedTesting.Assets
  31. COMPONENT
  32. Terrain
  33. )
  34. endif()