diff --git a/deployment/ccip/changeset/solana_v0_1_1/self_serve_test.go b/deployment/ccip/changeset/solana_v0_1_1/self_serve_test.go index 859d45fdbcd..8f4d7f52d0d 100644 --- a/deployment/ccip/changeset/solana_v0_1_1/self_serve_test.go +++ b/deployment/ccip/changeset/solana_v0_1_1/self_serve_test.go @@ -9,6 +9,7 @@ import ( "github.com/gagliardetto/solana-go/programs/token" chainSelectors "github.com/smartcontractkit/chain-selectors" + "github.com/smartcontractkit/quarantine" "github.com/stretchr/testify/require" lockrelease "github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings/v0_1_1/lockrelease_token_pool" @@ -43,6 +44,7 @@ func TestOnboardTokenPoolForSelfServeWithMCMs(t *testing.T) { } func TestOnboardTokenPoolForSelfServeWithoutMCMs(t *testing.T) { + quarantine.Flaky(t, "DX-2361") t.Parallel() doTestOnboardTokenPoolForSelfServe(t, false) } diff --git a/deployment/ccip/changeset/v1_5_1/cs_deploy_token_pool_factory_test.go b/deployment/ccip/changeset/v1_5_1/cs_deploy_token_pool_factory_test.go index b36e699c492..4426572a978 100644 --- a/deployment/ccip/changeset/v1_5_1/cs_deploy_token_pool_factory_test.go +++ b/deployment/ccip/changeset/v1_5_1/cs_deploy_token_pool_factory_test.go @@ -5,6 +5,7 @@ import ( "github.com/ethereum/go-ethereum/common" chain_selectors "github.com/smartcontractkit/chain-selectors" + "github.com/smartcontractkit/quarantine" "github.com/stretchr/testify/require" "github.com/smartcontractkit/chainlink-ccip/chains/evm/gobindings/generated/v1_0_0/rmn_proxy_contract" @@ -26,6 +27,7 @@ import ( ) func TestDeployTokenPoolFactoryChangeset(t *testing.T) { + quarantine.Flaky(t, "DX-2894") t.Parallel() tests := []struct { diff --git a/deployment/ccip/changeset/v1_5_1/cs_propose_admin_role_test.go b/deployment/ccip/changeset/v1_5_1/cs_propose_admin_role_test.go index 69f45a35154..6371759f698 100644 --- a/deployment/ccip/changeset/v1_5_1/cs_propose_admin_role_test.go +++ b/deployment/ccip/changeset/v1_5_1/cs_propose_admin_role_test.go @@ -6,6 +6,8 @@ import ( "github.com/stretchr/testify/require" + "github.com/smartcontractkit/quarantine" + "github.com/smartcontractkit/chainlink-evm/pkg/utils" cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment" @@ -301,6 +303,7 @@ func TestProposeAdminRoleChangeset_ExecutionWithExternalAdmin(t *testing.T) { } func TestProposeAdminRoleChangesetV2_Validations(t *testing.T) { + quarantine.Flaky(t, "DX-2887") t.Parallel() e, _, selectorB, _ := testhelpers.SetupTwoChainEnvironmentWithTokens(t, logger.TestLogger(t), true) @@ -454,6 +457,7 @@ func TestProposeAdminRoleChangesetV2_Validations(t *testing.T) { } func TestProposeAdminRoleChangesetV2_ExecutionWithMCMS(t *testing.T) { + quarantine.Flaky(t, "DX-2889") t.Parallel() mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second} @@ -556,6 +560,7 @@ func TestProposeAdminRoleChangesetV2_ExecutionWithoutMCMS(t *testing.T) { } func TestProposeAdminRoleChangesetV2_MultipleTokensPerChain(t *testing.T) { + quarantine.Flaky(t, "DX-2892") t.Parallel() mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second} @@ -615,6 +620,7 @@ func TestProposeAdminRoleChangesetV2_MultipleTokensPerChain(t *testing.T) { } func TestProposeAdminRoleChangesetV2_EmptyConfigReturnsError(t *testing.T) { + quarantine.Flaky(t, "DX-2891") t.Parallel() e, _, _, _ := testhelpers.SetupTwoChainEnvironmentWithTokens(t, logger.TestLogger(t), true) @@ -633,6 +639,7 @@ func TestProposeAdminRoleChangesetV2_EmptyConfigReturnsError(t *testing.T) { } func TestProposeAdminRoleChangesetV2_PendingAdminValidation(t *testing.T) { + quarantine.Flaky(t, "DX-2897") t.Parallel() mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second} diff --git a/deployment/ccip/changeset/v1_5_1/cs_update_admin_role_test.go b/deployment/ccip/changeset/v1_5_1/cs_update_admin_role_test.go index fb91dbcf5ea..f6abfa81934 100644 --- a/deployment/ccip/changeset/v1_5_1/cs_update_admin_role_test.go +++ b/deployment/ccip/changeset/v1_5_1/cs_update_admin_role_test.go @@ -8,6 +8,8 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/stretchr/testify/require" + "github.com/smartcontractkit/quarantine" + "github.com/smartcontractkit/chainlink-evm/pkg/utils" "github.com/smartcontractkit/chainlink/deployment/ccip/changeset/testhelpers" @@ -19,6 +21,7 @@ import ( ) func TestUpdateAdminRoleChangesetV2_Validations(t *testing.T) { + quarantine.Flaky(t, "DX-2890") t.Parallel() mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second} @@ -153,6 +156,7 @@ func TestUpdateAdminRoleChangesetV2_EmptyConfigIsGracefullyHandled(t *testing.T) } func TestUpdateAdminRoleChangesetV2_ExecutionWithoutMCMS(t *testing.T) { + quarantine.Flaky(t, "DX-2895") t.Parallel() e, selectorA, selectorB, _ := testhelpers.SetupTwoChainEnvironmentWithTokens(t, logger.TestLogger(t), false) @@ -306,6 +310,7 @@ func TestUpdateAdminRoleChangesetV2_ExecutionWithMCMS(t *testing.T) { } func TestUpdateAdminRoleChangesetV2_MultipleTokensPerChain(t *testing.T) { + quarantine.Flaky(t, "DX-2888") t.Parallel() mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second}