gitlab_quality-test_tooling 1.5.0 → 1.5.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ba60bceafbfb950d7cc588d11b14b457f74cdf3f39271b33b171d7de935c6a2
|
4
|
+
data.tar.gz: 3129a7a6da1a0c6f46df06ccd69f4d6d84a2f926a1dca268ea73455054fdbf4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cfd0c911a463fe793c701ae13bef14dcd4e5220bc0e41819126e6659f1bcb6589ce1dba5baa33f6410f92a8ddc6414623cb7952638f66a3d79a55099089f1a6
|
7
|
+
data.tar.gz: 12600147b76a659a725662119d08318999a85f1483a5d68bb6da14f464085f3d67fc6748a2f94dcee9bef82357c62a17f874d3a3feb2ee6961fbcb094f61aec0
|
data/Gemfile.lock
CHANGED
@@ -13,7 +13,7 @@ module GitlabQuality
|
|
13
13
|
@gitlab = (dry_run ? GitlabIssueDryClient : GitlabIssueClient).new(token: token, project: project)
|
14
14
|
@files = Array(input_files)
|
15
15
|
@confidential = confidential
|
16
|
-
@issue_logger = IssueLogger.new(file_path: related_issues_file)
|
16
|
+
@issue_logger = IssueLogger.new(file_path: related_issues_file) unless related_issues_file.nil?
|
17
17
|
end
|
18
18
|
|
19
19
|
def invoke!
|
@@ -31,11 +31,11 @@ module GitlabQuality
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def collect_issues(test, issues)
|
34
|
-
issue_logger
|
34
|
+
issue_logger&.collect(test, issues)
|
35
35
|
end
|
36
36
|
|
37
37
|
def write_issues_log_file
|
38
|
-
issue_logger
|
38
|
+
issue_logger&.write
|
39
39
|
end
|
40
40
|
|
41
41
|
def test_hash(test)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab_quality-test_tooling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitLab Quality
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: climate_control
|