• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

localstack / localstack / 21765279428

06 Feb 2026 08:43PM UTC coverage: 73.535% (-13.3%) from 86.871%
21765279428

Pull #13716

github

web-flow
Merge 0f5988375 into 20cc1b384
Pull Request #13716: Events: improve Store IAM Statement typing

6 of 6 new or added lines in 1 file covered. (100.0%)

9920 existing lines in 273 files now uncovered.

56187 of 76409 relevant lines covered (73.53%)

0.74 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

30.77
/localstack-core/localstack/services/cloudformation/engine/v2/unsupported_resource.py
1
from __future__ import annotations
1✔
2

3
from localstack import config
1✔
4
from localstack.aws.api.cloudformation import ChangeSetType
1✔
5

6

7
def should_ignore_unsupported_resource_type(
1✔
8
    resource_type: str, change_set_type: ChangeSetType
9
) -> bool:
UNCOV
10
    if config.CFN_IGNORE_UNSUPPORTED_RESOURCE_TYPES:
×
UNCOV
11
        return True
×
12

UNCOV
13
    match change_set_type:
×
UNCOV
14
        case ChangeSetType.CREATE:
×
UNCOV
15
            return resource_type in config.CFN_IGNORE_UNSUPPORTED_TYPE_CREATE
×
UNCOV
16
        case ChangeSetType.UPDATE | ChangeSetType.IMPORT:
×
UNCOV
17
            return resource_type in config.CFN_IGNORE_UNSUPPORTED_TYPE_UPDATE
×
18
        case _:
×
19
            return False
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc