-
Notifications
You must be signed in to change notification settings - Fork 1
[Part 2] Add support for Go cover files #2447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Coverage Report
Warning Consider additional tests: There's
Tags
Impacted Files
Last update to 4a64bbc at 00:30am UTC |
|
Terraform plan in ./services/ingest/infrastructure in the prod workspace Plan: 0 to add, 1 to change, 0 to destroy.Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
!~ update in-place
Terraform will perform the following actions:
# module.ingest.aws_lambda_function.service will be updated in-place
!~ resource "aws_lambda_function" "service" {
id = "coverage-ingest-prod"
!~ last_modified = "2025-11-11T21:51:18.000+0000" -> (known after apply)
!~ source_code_hash = "JrCZl5WkV2uy8Xu/KczdRUVNlniX1bdBro8ejWl0enc=" -> "l4/eqnoAAzyspWIne5UbNGAh/Ab7vIjNNaJ0SX8YTpo="
tags = {}
# (29 unchanged attributes hidden)
# (4 unchanged blocks hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.✅ Plan applied in Ingest #2477 |
| CoverageFormat::GO_COVER, | ||
| root: $projectRoot, | ||
| ); | ||
| } catch (Exception $exception) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The next 10 lines are not covered by any tests.
| $block | ||
| ); | ||
| } | ||
| } catch (LogicException $logicException) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The next 9 lines are not covered by any tests.
|
|
||
| // Skip empty lines | ||
| if ($line === '') { | ||
| return $coverage; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is not covered by any tests.
|
|
||
| // Match the record type and its data | ||
| if (preg_match(self::LINE_STRUCTURE, $line, $parts) !== 1) { | ||
| throw new ParseException( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The next 5 lines are not covered by any tests.
| } | ||
|
|
||
| if ($startLine > $endLine) { | ||
| $this->parseStrategyLogger->error( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The next 22 lines are not covered by any tests.
Description