from unittest.case import skipIf from integration.config.service_names import CODE_SIGN from integration.helpers.base_test import BaseTest from integration.helpers.resource import current_region_does_not_support class TestFunctionWithSigningProfile(BaseTest): @skipIf(current_region_does_not_support([CODE_SIGN]), "CodeSign is not supported in this testing region") def test_function_with_signing_profile(self): self.create_and_verify_stack("combination/function_with_signing_profile")