Skip to content

Commit 527b03c

Browse files
committed
Update flakeguard ticket db and jira assignee mapping
1 parent 7122a6a commit 527b03c

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

tools/flakeguard/.flaky_test_db.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,24 @@
7171
"jira_ticket": "CCIP-4582",
7272
"skipped_at": "0001-01-01T00:00:00Z"
7373
},
74+
"github.com/smartcontractkit/chainlink/integration-tests/smoke::TestKeeperNodeDown/registry_1_3": {
75+
"test_package": "github.com/smartcontractkit/chainlink/integration-tests/smoke",
76+
"test_name": "TestKeeperNodeDown/registry_1_3",
77+
"jira_ticket": "DX-398",
78+
"skipped_at": "0001-01-01T00:00:00Z"
79+
},
80+
"github.com/smartcontractkit/chainlink/v2/core/capabilities/integration_tests/keystone::Test_OneAtATimeTransmissionSchedule": {
81+
"test_package": "github.com/smartcontractkit/chainlink/v2/core/capabilities/integration_tests/keystone",
82+
"test_name": "Test_OneAtATimeTransmissionSchedule",
83+
"jira_ticket": "DX-399",
84+
"skipped_at": "0001-01-01T00:00:00Z"
85+
},
86+
"github.com/smartcontractkit/chainlink/v2/core/services/keeper::TestKeeperEthIntegration": {
87+
"test_package": "github.com/smartcontractkit/chainlink/v2/core/services/keeper",
88+
"test_name": "TestKeeperEthIntegration",
89+
"jira_ticket": "DX-400",
90+
"skipped_at": "0001-01-01T00:00:00Z"
91+
},
7492
"github.com/smartcontractkit/chainlink/v2/core/services/workflows::TestEngine_ConcurrentExecutions": {
7593
"test_package": "github.com/smartcontractkit/chainlink/v2/core/services/workflows",
7694
"test_name": "TestEngine_ConcurrentExecutions",

tools/flakeguard/.jira_assignee_mapping.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@
1515
"pattern": "github.com/smartcontractkit/chainlink/system-tests/tests/smoke/capabilities.*",
1616
"assignee": "63beffc42a526608c5501530"
1717
},
18+
{
19+
"pattern": "github.com/smartcontractkit/chainlink/v2/core/capabilities/integration_tests/keystone.*",
20+
"assignee": "63beffc42a526608c5501530"
21+
},
22+
{
23+
"pattern": "github.com/smartcontractkit/chainlink/v2/core/services/keeper",
24+
"assignee": "61c3bc0d68926d0068ad903d",
25+
"assignee_name": "Akshay"
26+
},
1827
{
1928
"pattern": "github.com/smartcontractkit/chainlink/deployment.*",
2029
"assignee": "6175d3e016119e0069fdd14f"

tools/flakeguard/cmd/create_jira_tickets.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ var (
3535

3636
// AssigneeMapping holds a regex pattern and its corresponding assignee.
3737
type AssigneeMapping struct {
38-
Pattern string `json:"pattern"`
39-
Assignee string `json:"assignee"`
38+
Pattern string `json:"pattern"`
39+
Assignee string `json:"assignee"`
40+
AssigneeName string `json:"assignee_name"`
4041
}
4142

4243
var CreateTicketsCmd = &cobra.Command{

0 commit comments

Comments
 (0)