dri 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5645bd9d3338211c2358afd90fdc3ad69c1ba60f517024978601fa7c8f2893e1
4
- data.tar.gz: b047d324d60bb9e23e39b66e3fad29c7e27be5867c463d8a15abdc901251e161
3
+ metadata.gz: 228746aadece1248bdaa7562cd79b2097cad1ad89779161e3ac7549e0cf80bc4
4
+ data.tar.gz: c1bd8dbac800dc4d83663d95a1e4299681cd6de946a85ed8de47f21499ffe0d3
5
5
  SHA512:
6
- metadata.gz: bf9d19efe7b0a7ad7afa547d89a330adc31bde0a3f7dfc1c95fe23929aef56bd173bf7ee942a5afcf3e63593ae8d87a968a0c9b1f62d58750adfa7d8a5a24597
7
- data.tar.gz: c1a9095caf1824f2865e49deeaaef8293e86925edb3e92c47518f5355fa87efe97ee9364eea98cd1096d548290db5a417d0bdc044b10cb0f0d799cdb22d2073e
6
+ metadata.gz: 7f50c87023e088085f80c6cf24bef210dee48f5d184a33628fbb5092ed100c352938215db7ee2406567a3d818cd01d28125e7c2f2369f0fd7951b57479789958
7
+ data.tar.gz: 67b9123e0f2613517327c3e1c65644cd885c627f04773c1f5a56b31e6a2dbdb6e7410740a96030a48304f61f9f6254ff84c353fc35cf5f303752eb1fb4d118bb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dri (1.1.0)
4
+ dri (1.1.1)
5
5
  activesupport (~> 7.1)
6
6
  amatch (~> 0.4.1)
7
7
  gitlab (~> 4.19)
data/faq.yaml CHANGED
@@ -1,21 +1,21 @@
1
1
  ---
2
2
  - question: "Which pipelines we currently have and what is their running cadence?"
3
- link: "https://about.gitlab.com/handbook/engineering/infrastructure/test-platform/debugging-qa-test-failures/#qa-test-pipelines"
3
+ link: "https://handbook.gitlab.com/handbook/engineering/infrastructure-platforms/developer-experience/debugging-end-to-end-test-failures/"
4
4
  - question: "Where can I find the rotation schedule?"
5
5
  link: "https://gitlab.com/gitlab-org/quality/pipeline-triage#dri-weekly-rotation-schedule"
6
6
  - question: "What is the process to quarantine a test?"
7
- link: "https://about.gitlab.com/handbook/engineering/infrastructure/test-platform/debugging-qa-test-failures/#quarantining-tests"
7
+ link: "https://handbook.gitlab.com/handbook/engineering/infrastructure-platforms/developer-experience/pipeline-triage/#quarantining-tests"
8
8
  - question: "What is the process to dequarantine a test?"
9
- link: "https://about.gitlab.com/handbook/engineering/infrastructure/test-platform/debugging-qa-test-failures/#dequarantining-tests"
9
+ link: "https://handbook.gitlab.com/handbook/engineering/infrastructure-platforms/developer-experience/pipeline-triage/#dequarantining-tests"
10
10
  - question: "What are the failure classification labels?"
11
- link: "https://about.gitlab.com/handbook/engineering/infrastructure/test-platform/debugging-qa-test-failures/#classify-and-triage-the-test-failure"
11
+ link: "https://handbook.gitlab.com/handbook/engineering/infrastructure-platforms/developer-experience/pipeline-triage/#classify-and-triage-the-test-failure"
12
12
  - question: "I have a correlation ID. How to find logs from various GitLab components?"
13
- link: "https://about.gitlab.com/handbook/engineering/infrastructure/test-platform/debugging-qa-test-failures/#kibana-correlation-dashboards"
13
+ link: "https://handbook.gitlab.com/handbook/engineering/infrastructure-platforms/developer-experience/debugging-end-to-end-test-failures/#kibana-correlation-dashboards"
14
14
  - question: "Where do I find the MR that introduced a feature flag?"
15
15
  link: "https://samdbeckham.gitlab.io/feature-flags/#%5B%7B%22type%22:%22filtered-search-term%22,%22value%22:%7B%22data%22:%22%22%7D%7D%5D"
16
16
  - question: "What to do when a failure needs escalation?"
17
- link: "https://about.gitlab.com/handbook/engineering/infrastructure/test-platform/debugging-qa-test-failures/#failure-needs-escalation"
17
+ link: "https://handbook.gitlab.com/handbook/engineering/infrastructure-platforms/developer-experience/pipeline-triage/#failure-needs-escalation"
18
18
  - question: "I have an MR to fix the failure. How I make sure it is merged as soon as possible?"
19
- link: "https://about.gitlab.com/handbook/engineering/infrastructure/test-platform/debugging-qa-test-failures/#fixing-the-test"
19
+ link: "https://handbook.gitlab.com/handbook/engineering/infrastructure-platforms/developer-experience/pipeline-triage/#fixing-the-test"
20
20
 
21
21
 
@@ -33,7 +33,7 @@ module Dri
33
33
  # @param [String] state
34
34
  # @return [Array<Gitlab::ObjectifiedHash>]
35
35
  def fetch_all_triaged_failures(emoji:, state:)
36
- project_ids = [GITLAB_PROJECT_ID, CUSTOMERSDOT_PROJECT_ID]
36
+ project_ids = [GITLAB_PROJECT_ID, CUSTOMERSDOT_PROJECT_ID, E2E_TEST_ISSUES_PROJECT_ID]
37
37
  failures = []
38
38
 
39
39
  project_ids.each do |project_id|
@@ -168,7 +168,7 @@ module Dri
168
168
  # @param [String] state
169
169
  # @return [Array<Gitlab::ObjectifiedHash>]
170
170
  def fetch_all_new_failures(start_date:, end_date:, state:)
171
- [GITLAB_PROJECT_ID, CUSTOMERSDOT_PROJECT_ID].flat_map do |project_id|
171
+ [GITLAB_PROJECT_ID, CUSTOMERSDOT_PROJECT_ID, E2E_TEST_ISSUES_PROJECT_ID].flat_map do |project_id|
172
172
  fetch_new_failures(
173
173
  project_id: project_id,
174
174
  start_date: start_date,
@@ -12,6 +12,7 @@ module Dri
12
12
  INFRA_TEAM_PROD_PROJECT_ID = 7444821
13
13
  RUNBOOKS_PROJECT_ID = 41045213
14
14
  FAST_QUARANTINE_PROJECT_ID = 45427186
15
+ E2E_TEST_ISSUES_PROJECT_ID = 69718754
15
16
  end
16
17
 
17
18
  module Triage
data/lib/dri/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dri
4
- VERSION = "1.1.0"
4
+ VERSION = "1.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dri
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Test Platform
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-04-14 00:00:00.000000000 Z
11
+ date: 2025-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport