Skip to content

Commit

Permalink
Using SkipFlakey for easy discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami committed Nov 27, 2024
1 parent 22033da commit a1df7ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/ccip-tests/smoke/ccip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import (

"github.com/smartcontractkit/chainlink-testing-framework/lib/logging"
"github.com/smartcontractkit/chainlink-testing-framework/lib/utils/ptr"

"github.com/smartcontractkit/chainlink/v2/core/gethwrappers/ccip/generated/evm_2_evm_onramp"
"github.com/smartcontractkit/chainlink/v2/core/gethwrappers/ccip/generated/lock_release_token_pool"
"github.com/smartcontractkit/chainlink/v2/core/gethwrappers/ccip/generated/token_pool"
"github.com/smartcontractkit/chainlink/v2/core/internal/testutils"

Check failure on line 21 in integration-tests/ccip-tests/smoke/ccip_test.go

View workflow job for this annotation

GitHub Actions / Lint integration-tests

use of internal package github.com/smartcontractkit/chainlink/v2/core/internal/testutils not allowed (typecheck)

"github.com/smartcontractkit/chainlink/integration-tests/ccip-tests/actions"
"github.com/smartcontractkit/chainlink/integration-tests/ccip-tests/contracts"
Expand Down Expand Up @@ -889,7 +889,7 @@ func TestSmokeCCIPReorgBelowFinality(t *testing.T) {
// doesn't go through and verifies f+1 nodes is able to detect reorg.
// Note: LogPollInterval interval is set as 1s to detect the reorg immediately
func TestSmokeCCIPReorgAboveFinalityAtDestination(t *testing.T) {
t.Skip("Skipping as it is flaking. Need to address this ticket CCIP-4401 to enable it.")
testutils.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/CCIP-4401")
t.Parallel()
t.Run("Above finality reorg in destination chain", func(t *testing.T) {
performAboveFinalityReorgAndValidate(t, "Destination")
Expand All @@ -901,7 +901,7 @@ func TestSmokeCCIPReorgAboveFinalityAtDestination(t *testing.T) {
// shouldn't even get initiated and verifies f+1 nodes is able to detect reorg.
// Note: LogPollInterval interval is set as 1s to detect the reorg immediately
func TestSmokeCCIPReorgAboveFinalityAtSource(t *testing.T) {
t.Skip("Skipping as it is flaking. Need to address this ticket CCIP-4401 to enable it.")
testutils.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/CCIP-4401")
t.Parallel()
t.Run("Above finality reorg in source chain", func(t *testing.T) {
performAboveFinalityReorgAndValidate(t, "Source")
Expand Down

0 comments on commit a1df7ec

Please sign in to comment.