-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Show E2E test coverage of chainlink node binary #12835
Merged
lukaszcl
merged 42 commits into
develop
from
TT-1049-Provide-e2e-coverage-reports-for-docker-tests
Apr 24, 2024
Merged
Show E2E test coverage of chainlink node binary #12835
lukaszcl
merged 42 commits into
develop
from
TT-1049-Provide-e2e-coverage-reports-for-docker-tests
Apr 24, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lukaszcl
changed the title
Get E2E test coverage of chainlink node binary
WIP: Get E2E test coverage of chainlink node binary
Apr 16, 2024
lukaszcl
force-pushed
the
TT-1049-Provide-e2e-coverage-reports-for-docker-tests
branch
from
April 16, 2024 13:51
d7a0587
to
3f0c6f1
Compare
lukaszcl
force-pushed
the
TT-1049-Provide-e2e-coverage-reports-for-docker-tests
branch
from
April 16, 2024 14:50
a4a8292
to
a3315f7
Compare
lukaszcl
force-pushed
the
TT-1049-Provide-e2e-coverage-reports-for-docker-tests
branch
from
April 16, 2024 15:46
9034b51
to
20fef84
Compare
erikburt
requested changes
Apr 22, 2024
erikburt
previously approved these changes
Apr 22, 2024
github-merge-queue
bot
removed this pull request from the merge queue due to failed status checks
Apr 22, 2024
github-merge-queue
bot
removed this pull request from the merge queue due to failed status checks
Apr 22, 2024
github-merge-queue
bot
removed this pull request from the merge queue due to failed status checks
Apr 22, 2024
Quality Gate passedIssues Measures |
sebawo
approved these changes
Apr 24, 2024
lukaszcl
deleted the
TT-1049-Provide-e2e-coverage-reports-for-docker-tests
branch
April 24, 2024 08:53
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This updates integration workflow to build chainlink image with
cover
flag to get coverage profiling during E2E tests. The E2E test coverage is shown in "Show Chainlink Node Go Coverage" workflow step. The coverage is calculated based on all executed E2E tests.Example CI job:
When
Logging.show_html_coverage_report=true
is set and the Chainlink Node image is built with the cover flag, an HTML coverage report will be generated for each test.To build node image with cover flag run docker build with
COVER_FLAG=true
:docker buildx build --platform linux/arm64 . -t localhost/chainlink-local:develop -f ./core/chainlink.Dockerfile --build-arg COVER_FLAG=true
For now the coverage is only tracked for tests that use
CleanUpTypeStandard
.