Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions deployment/ccip/changeset/v1_6/cs_add_new_chain_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (

"github.com/ethereum/go-ethereum/common"
chain_selectors "github.com/smartcontractkit/chain-selectors"
"github.com/smartcontractkit/quarantine"

"github.com/smartcontractkit/chainlink-ccip/chainconfig"
"github.com/smartcontractkit/chainlink-ccip/chains/evm/gobindings/generated/latest/don_id_claimer"
Expand Down Expand Up @@ -68,6 +69,7 @@ func checkConnectivity(
}

func TestConnectNewChain(t *testing.T) {
quarantine.Flaky(t, "DX-2881")
t.Parallel()
mustHaveOwner := func(t *testing.T, ownable commonchangeset.Ownable, expectedOwner string) {
owner, err := ownable.Owner(nil)
Expand Down Expand Up @@ -544,6 +546,7 @@ func TestAddAndPromoteCandidatesForNewChain(t *testing.T) {
}

func TestRemoveLinkTokenAddressIfExists(t *testing.T) {
quarantine.Flaky(t, "DX-2880")
t.Parallel()

t.Run("should remove LINK token successfully if already exists", func(t *testing.T) {
Expand Down
3 changes: 3 additions & 0 deletions integration-tests/smoke/ocr2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import (
"github.com/rs/zerolog"
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/quarantine"

"github.com/smartcontractkit/chainlink-testing-framework/parrot"
"github.com/smartcontractkit/chainlink-testing-framework/seth"

Expand Down Expand Up @@ -119,6 +121,7 @@ func TestOCRv2Request(t *testing.T) {
}

func TestOCRv2JobReplacement(t *testing.T) {
quarantine.Flaky(t, "DX-2368")
t.Parallel()
l := logging.GetTestLogger(t)

Expand Down
2 changes: 2 additions & 0 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/freeport"
"github.com/smartcontractkit/quarantine"

"github.com/smartcontractkit/chainlink/v2/core"
"github.com/smartcontractkit/chainlink/v2/core/config/env"
Expand Down Expand Up @@ -58,6 +59,7 @@ var (
// -run param of go test without the txtar or txt suffix, like so:
// go test . -run TestScripts/node/validate/default
func TestScripts(t *testing.T) {
quarantine.Flaky(t, "DX-2650")
if testing.Short() {
t.Skip("skipping testscript")
}
Expand Down
1 change: 1 addition & 0 deletions system-tests/tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ require (
github.com/smartcontractkit/chainlink/system-tests/tests/smoke/cre/evmread v0.0.0-20250917232237-c4ecf802c6f8
github.com/smartcontractkit/chainlink/system-tests/tests/smoke/cre/solana/solwrite v0.0.0-00010101000000-000000000000
github.com/smartcontractkit/libocr v0.0.0-20260130195252-6e18e2a30acc
github.com/smartcontractkit/quarantine v0.0.0-20250909213106-ece491bef618
github.com/stretchr/testify v1.11.1
golang.org/x/sync v0.19.0
google.golang.org/protobuf v1.36.11
Expand Down
3 changes: 3 additions & 0 deletions system-tests/tests/smoke/cre/cre_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import (

"github.com/stretchr/testify/require"

"github.com/smartcontractkit/quarantine"

t_helpers "github.com/smartcontractkit/chainlink/system-tests/tests/test-helpers"
)

Expand Down Expand Up @@ -162,6 +164,7 @@ func Test_CRE_V2_HTTP_Action_Regression_Suite(t *testing.T) {
}

func Test_CRE_V2_Beholder_Suite(t *testing.T) {
quarantine.Flaky(t, "DX-2340")
testEnv := t_helpers.SetupTestEnvironmentWithConfig(t, t_helpers.GetDefaultTestConfig(t), append(v2RegistriesFlags, "--with-dashboards")...)

ExecuteLogStreamingTest(t, testEnv)
Expand Down