CMakeLists.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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::PythonAssetBuilder
  11. TEST_SUITE periodic
  12. TEST_SERIAL
  13. PATH ${CMAKE_CURRENT_LIST_DIR}
  14. RUNTIME_DEPENDENCIES
  15. Legacy::Editor
  16. AZ::AssetProcessor
  17. AutomatedTesting.Assets
  18. Gem::EditorPythonBindings.Editor
  19. Gem::PythonAssetBuilder.Editor
  20. COMPONENT TestTools
  21. )
  22. ly_add_pytest(
  23. NAME AutomatedTesting::PythonAssetPeriodic
  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. Gem::EditorPythonBindings.Editor
  32. Gem::PythonAssetBuilder.Editor
  33. COMPONENT TestTools
  34. )
  35. endif()