CMakeLists.txt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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::MetadataRelocation.Main
  11. TEST_SUITE main
  12. TEST_SERIAL
  13. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite.py
  14. RUNTIME_DEPENDENCIES
  15. Legacy::Editor
  16. AZ::AssetProcessor
  17. AutomatedTesting.Assets
  18. COMPONENT
  19. MetadataRelocation
  20. )
  21. ly_add_pytest(
  22. NAME AutomatedTesting::MetadataRelocation.Periodic
  23. TEST_SUITE periodic
  24. TEST_SERIAL
  25. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite.py
  26. RUNTIME_DEPENDENCIES
  27. Legacy::Editor
  28. AZ::AssetProcessor
  29. AutomatedTesting.Assets
  30. COMPONENT
  31. MetadataRelocation
  32. )
  33. ly_add_pytest(
  34. NAME AutomatedTesting::MetadataRelocation.Sandbox
  35. TEST_SUITE sandbox
  36. TEST_SERIAL
  37. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite.py
  38. RUNTIME_DEPENDENCIES
  39. Legacy::Editor
  40. AZ::AssetProcessor
  41. AutomatedTesting.Assets
  42. COMPONENT
  43. MetadataRelocation
  44. )
  45. endif()