• 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

60.87
/localstack-core/localstack/services/stepfunctions/asl/eval/test_state/program_state.py
1
from typing import Final
1✔
2

3
from localstack.services.stepfunctions.asl.eval.program_state import ProgramState
1✔
4

5

6
class ProgramChoiceSelected(ProgramState):
1✔
7
    next_state_name: Final[str]
1✔
8

9
    def __init__(self, next_state_name: str):
1✔
UNCOV
10
        super().__init__()
×
UNCOV
11
        self.next_state_name = next_state_name
×
12

13

14
class ProgramCaughtError(ProgramState):
1✔
15
    next_state_name: Final[str]
1✔
16
    error: Final[str]
1✔
17
    cause: Final[str]
1✔
18

19
    def __init__(self, next_state_name: str, error: str, cause: str):
1✔
UNCOV
20
        super().__init__()
×
UNCOV
21
        self.next_state_name = next_state_name
×
UNCOV
22
        self.error = error
×
UNCOV
23
        self.cause = cause
×
24

25

26
class ProgramRetriable(ProgramState):
1✔
27
    error: Final[str]
1✔
28
    cause: Final[str]
1✔
29

30
    def __init__(self, error: str, cause: str):
1✔
UNCOV
31
        super().__init__()
×
UNCOV
32
        self.error = error
×
UNCOV
33
        self.cause = cause
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc