Skip to content

Commit 664ac91

Browse files
authored
chore: skip flaky tests (#17675)
* chore: skip flaky tests * fix: skip subsequent tests for TestKeystoneView * fix: unused import error
1 parent 3a4e511 commit 664ac91

File tree

5 files changed

+16
-0
lines changed

5 files changed

+16
-0
lines changed

core/capabilities/remote/executable/client_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ func Test_Client_DonTopologies(t *testing.T) {
8484
}
8585

8686
func Test_Client_TransmissionSchedules(t *testing.T) {
87+
tests.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/DX-104")
8788
ctx := testutils.Context(t)
8889

8990
responseTest := func(t *testing.T, response commoncap.CapabilityResponse, responseError error) {

core/services/ocrcommon/peer_wrapper_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212

1313
commonconfig "github.com/smartcontractkit/chainlink-common/pkg/config"
1414
"github.com/smartcontractkit/chainlink-common/pkg/services/servicetest"
15+
"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"
1516
"github.com/smartcontractkit/chainlink/v2/core/internal/cltest"
1617
"github.com/smartcontractkit/chainlink/v2/core/internal/testutils"
1718
"github.com/smartcontractkit/chainlink/v2/core/internal/testutils/configtest"
@@ -109,6 +110,7 @@ func Test_SingletonPeerWrapper_Start(t *testing.T) {
109110
}
110111

111112
func Test_SingletonPeerWrapper_Close(t *testing.T) {
113+
tests.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/DX-761")
112114
t.Parallel()
113115
ctx := testutils.Context(t)
114116

deployment/ccip/changeset/crossfamily/v1_6/cs_add_evm_solana_lane_test.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import (
1616
solState "github.com/smartcontractkit/chainlink-ccip/chains/solana/utils/state"
1717
"github.com/smartcontractkit/chainlink-testing-framework/lib/utils/testcontext"
1818

19+
"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"
20+
1921
crossfamily "github.com/smartcontractkit/chainlink/deployment/ccip/changeset/crossfamily/v1_6"
2022
ccipChangesetSolana "github.com/smartcontractkit/chainlink/deployment/ccip/changeset/solana"
2123
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/testhelpers"
@@ -40,6 +42,12 @@ func TestAddEVMSolanaLaneBidirectional(t *testing.T) {
4042
},
4143
} {
4244
t.Run(tc.name, func(t *testing.T) {
45+
if t.Name() == "TestAddEVMSolanaLaneBidirectional/MCMS_enabled" {
46+
tests.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/DX-758")
47+
}
48+
if t.Name() == "TestAddEVMSolanaLaneBidirectional/MCMS_disabled" {
49+
tests.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/DX-759")
50+
}
4351
t.Parallel()
4452
ctx := testcontext.Get(t)
4553
tenv, _ := testhelpers.NewMemoryEnvironment(t, testhelpers.WithSolChains(1))

deployment/common/changeset/solana/update_delay_timelock_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"go.uber.org/zap/zapcore"
1010

1111
timelockBindings "github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings/timelock"
12+
"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"
1213

1314
chainselectors "github.com/smartcontractkit/chain-selectors"
1415
mcmsSolana "github.com/smartcontractkit/mcms/sdk/solana"
@@ -174,6 +175,7 @@ func TestUpdateTimelockDelaySolana_VerifyPreconditions(t *testing.T) {
174175
}
175176

176177
func TestUpdateTimelockDelaySolana_Apply(t *testing.T) {
178+
tests.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/DX-762")
177179
t.Parallel()
178180
env := setupUpdateDelayTestEnv(t)
179181
newDelayDuration := 5 * time.Minute

deployment/common/changeset/transfer_to_mcms_with_timelock_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import (
99
chain_selectors "github.com/smartcontractkit/chain-selectors"
1010
"github.com/stretchr/testify/require"
1111

12+
"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"
13+
1214
cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
1315
"github.com/smartcontractkit/chainlink/deployment"
1416
"github.com/smartcontractkit/chainlink/deployment/common/proposalutils"
@@ -150,6 +152,7 @@ func TestTransferToMCMSWithTimelockV2(t *testing.T) {
150152
}
151153

152154
func TestRenounceTimelockDeployerConfigValidate(t *testing.T) {
155+
tests.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/DX-724")
153156
t.Parallel()
154157
lggr := logger.TestLogger(t)
155158
e := memory.NewMemoryEnvironment(t, lggr, 0, memory.MemoryEnvironmentConfig{

0 commit comments

Comments
 (0)