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

localstack / localstack / 22709357475

05 Mar 2026 08:35AM UTC coverage: 59.732% (-27.2%) from 86.974%
22709357475

Pull #13880

github

web-flow
Merge 28fcab93c into 710618057
Pull Request #13880: Firehose: Replace TaggingService

12 of 12 new or added lines in 2 files covered. (100.0%)

20464 existing lines in 510 files now uncovered.

45290 of 75822 relevant lines covered (59.73%)

0.6 hits per line

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

71.43
/localstack-core/localstack/services/stepfunctions/asl/component/common/error_name/error_name.py
1
from __future__ import annotations
1✔
2

3
import abc
1✔
4
from typing import Final
1✔
5

6
from localstack.services.stepfunctions.asl.component.component import Component
1✔
7

8

9
class ErrorName(Component, abc.ABC):
1✔
10
    error_name: Final[str | None]
1✔
11

12
    def __init__(self, error_name: str | None):
1✔
13
        self.error_name = error_name
1✔
14

15
    def matches(self, error_name: str | None) -> bool:
1✔
UNCOV
16
        return self.error_name == error_name
×
17

18
    def __eq__(self, other):
1✔
UNCOV
19
        if isinstance(other, ErrorName):
×
UNCOV
20
            return self.matches(other.error_name)
×
UNCOV
21
        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