3
0

CMakeLists.txt 858 B

12345678910111213141516171819202122232425262728
  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. ################################################################################
  9. # AWS Automated Tests
  10. # Runs AWS Gems automation tests.
  11. ################################################################################
  12. if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS)
  13. ly_add_pytest(
  14. NAME AutomatedTesting::AWSTests
  15. TEST_SUITE awsi
  16. TEST_SERIAL
  17. PATH ${CMAKE_CURRENT_LIST_DIR}/
  18. RUNTIME_DEPENDENCIES
  19. AZ::AssetProcessor
  20. AutomatedTesting.GameLauncher
  21. AutomatedTesting.Assets
  22. COMPONENT
  23. AWS
  24. LABELS REQUIRES_tiaf
  25. )
  26. endif()