Disabling BundleMode, AssetBundler, and MissingDependency tests on Linux. (#6888)

Signed-off-by: Rosario Cox <lesaelr@amazon.com>
This commit is contained in:
LesaelR
2022-01-14 09:48:46 -08:00
committed by GitHub
parent b62d130475
commit f87e1f6906
@@ -93,16 +93,20 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS)
) )
ly_add_pytest( ly_add_pytest(
NAME AssetPipelineTests.AssetBundler NAME AssetPipelineTests.AssetBuilder
PATH ${CMAKE_CURRENT_LIST_DIR}/asset_bundler_batch_tests.py PATH ${CMAKE_CURRENT_LIST_DIR}/asset_builder_tests.py
EXCLUDE_TEST_RUN_TARGET_FROM_IDE EXCLUDE_TEST_RUN_TARGET_FROM_IDE
TEST_SERIAL TEST_SERIAL
TEST_SUITE periodic TEST_SUITE periodic
RUNTIME_DEPENDENCIES RUNTIME_DEPENDENCIES
AZ::AssetProcessor AZ::AssetProcessor
AZ::AssetBundlerBatch
) )
set(SUPPORTED_PLATFORMS "Windows" "Mac")
if (NOT "${PAL_PLATFORM_NAME}" IN_LIST SUPPORTED_PLATFORMS)
return()
endif()
ly_add_pytest( ly_add_pytest(
NAME AssetPipelineTests.BundleMode NAME AssetPipelineTests.BundleMode
PATH ${CMAKE_CURRENT_LIST_DIR}/bundle_mode_tests.py PATH ${CMAKE_CURRENT_LIST_DIR}/bundle_mode_tests.py
@@ -117,16 +121,16 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS)
) )
ly_add_pytest( ly_add_pytest(
NAME AssetPipelineTests.AssetBuilder NAME AssetPipelineTests.AssetBundler
PATH ${CMAKE_CURRENT_LIST_DIR}/asset_builder_tests.py PATH ${CMAKE_CURRENT_LIST_DIR}/asset_bundler_batch_tests.py
EXCLUDE_TEST_RUN_TARGET_FROM_IDE EXCLUDE_TEST_RUN_TARGET_FROM_IDE
TEST_SERIAL TEST_SERIAL
TEST_SUITE periodic TEST_SUITE periodic
RUNTIME_DEPENDENCIES RUNTIME_DEPENDENCIES
AZ::AssetProcessor AZ::AssetProcessor
AZ::AssetBundlerBatch
) )
ly_add_pytest( ly_add_pytest(
NAME AssetPipelineTests.MissingDependency NAME AssetPipelineTests.MissingDependency
PATH ${CMAKE_CURRENT_LIST_DIR}/missing_dependency_tests.py PATH ${CMAKE_CURRENT_LIST_DIR}/missing_dependency_tests.py