CMakeLists.txt 802 B

12345678910111213141516171819202122232425
  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. # Metadata Relocation Tests only currently contain one periodic test (see TestSuite.py).
  10. ly_add_pytest(
  11. NAME AutomatedTesting::MetadataRelocation.Periodic
  12. TEST_SUITE periodic
  13. PYTEST_MARKS "SUITE_periodic"
  14. TEST_SERIAL
  15. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite.py
  16. RUNTIME_DEPENDENCIES
  17. Legacy::Editor
  18. AZ::AssetProcessor
  19. AutomatedTesting.Assets
  20. COMPONENT
  21. MetadataRelocation
  22. )
  23. endif()