-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
CCIPv2: RPCLatency test, Full chaos suite #16320
base: develop
Are you sure you want to change the base?
Conversation
AER Report: CI Coreaer_workflow , commit , Clean Go Tidy & Generate , Detect Changes , Scheduled Run Frequency , GolangCI Lint (integration-tests/load) , GolangCI Lint (integration-tests) , GolangCI Lint (deployment) , Core Tests (go_core_tests) , test-scripts , Core Tests (go_core_tests_integration) , Core Tests (go_core_ccip_deployment_tests) , Core Tests (go_core_fuzz) , Core Tests (go_core_race_tests) , lint , SonarQube Scan 1. Port allocation failure in tests: go_core_ccip_deployment_testsSource of Error:
Why: The test Suggested fix: Ensure that the ephemeral port range is not exhausted by either increasing the range or reducing the number of concurrent tests that require port allocation. Alternatively, mock the port allocation in tests. 2. Port allocation failure in tests: go_core_ccip_deployment_testsSource of Error:
Why: The test Suggested fix: Ensure that the ephemeral port range is not exhausted by either increasing the range or reducing the number of concurrent tests that require port allocation. Alternatively, mock the port allocation in tests. 3. Linting issues: lintSource of Error:
Why: The linting step failed because at least one 'GolangCI Lint' matrix job failed. Specific linting errors were detected in the codebase. Suggested fix: Review the detailed linting errors and fix the issues in the codebase. Ensure that all code adheres to the linting rules specified in the GolangCI Lint configuration. 4. Linting issues in specific files: GolangCI Lint (integration-tests/load)Source of Error:
|
681f1c8
to
7a0db62
Compare
fb515ef
to
c8ccec1
Compare
# Conflicts: # integration-tests/load/go.mod # integration-tests/load/go.sum
# Conflicts: # integration-tests/go.mod # integration-tests/go.sum # integration-tests/load/go.mod # integration-tests/load/go.sum # integration-tests/testconfig/ccip/ccip.toml
# Conflicts: # integration-tests/go.mod
@@ -2,6 +2,7 @@ package ccip | |||
|
|||
import ( | |||
"context" | |||
"github.com/smartcontractkit/chainlink/integration-tests/testconfig/ccip" |
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.
should this trigger goimports
rule?
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.
Good catch, it should, however, let me fix it
|
No description provided.