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 +4 -4
- data/Gemfile.lock +1 -1
- data/faq.yaml +7 -7
- data/lib/dri/api_client.rb +2 -2
- data/lib/dri/utils/constants.rb +1 -0
- data/lib/dri/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 228746aadece1248bdaa7562cd79b2097cad1ad89779161e3ac7549e0cf80bc4
|
4
|
+
data.tar.gz: c1bd8dbac800dc4d83663d95a1e4299681cd6de946a85ed8de47f21499ffe0d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f50c87023e088085f80c6cf24bef210dee48f5d184a33628fbb5092ed100c352938215db7ee2406567a3d818cd01d28125e7c2f2369f0fd7951b57479789958
|
7
|
+
data.tar.gz: 67b9123e0f2613517327c3e1c65644cd885c627f04773c1f5a56b31e6a2dbdb6e7410740a96030a48304f61f9f6254ff84c353fc35cf5f303752eb1fb4d118bb
|
data/Gemfile.lock
CHANGED
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://
|
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://
|
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://
|
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://
|
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://
|
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://
|
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://
|
19
|
+
link: "https://handbook.gitlab.com/handbook/engineering/infrastructure-platforms/developer-experience/pipeline-triage/#fixing-the-test"
|
20
20
|
|
21
21
|
|
data/lib/dri/api_client.rb
CHANGED
@@ -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,
|
data/lib/dri/utils/constants.rb
CHANGED
data/lib/dri/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2025-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|