CMakeLists.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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::MultiplayerTests_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. AutomatedTesting.ServerLauncher
  19. AutomatedTesting.GameLauncher
  20. COMPONENT
  21. Multiplayer
  22. LABELS REQUIRES_tiaf
  23. )
  24. ly_add_pytest(
  25. NAME AutomatedTesting::MultiplayerTests_Sandbox
  26. TEST_SUITE sandbox
  27. TEST_SERIAL
  28. PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Sandbox.py
  29. RUNTIME_DEPENDENCIES
  30. Legacy::Editor
  31. AZ::AssetProcessor
  32. AutomatedTesting.Assets
  33. AutomatedTesting.ServerLauncher
  34. AutomatedTesting.GameLauncher
  35. COMPONENT
  36. Multiplayer
  37. )
  38. endif()