• 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

81.82
/localstack-core/localstack/services/stepfunctions/asl/component/intrinsic/function/function.py
1
import abc
1✔
2
from typing import Final
1✔
3

4
from localstack.services.stepfunctions.asl.component.eval_component import EvalComponent
1✔
5
from localstack.services.stepfunctions.asl.component.intrinsic.argument.argument import ArgumentList
1✔
6
from localstack.services.stepfunctions.asl.component.intrinsic.functionname.function_name import (
1✔
7
    FunctionName,
8
)
9

10

11
class Function(EvalComponent, abc.ABC):
1✔
12
    name: FunctionName
1✔
13
    argument_list: Final[ArgumentList]
1✔
14

15
    def __init__(self, name: FunctionName, argument_list: ArgumentList):
1✔
UNCOV
16
        self.name = name
×
UNCOV
17
        self.argument_list = argument_list
×
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