gitlab-qa 7.8.0 → 7.8.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/lib/gitlab/qa/report/results_in_issues.rb +5 -2
- data/lib/gitlab/qa/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: 3d5db8c8b0acf394172a0def237d3049c42c04a811204589d6052fb3fda32eb2
|
|
4
|
+
data.tar.gz: ae97cccc20dce22ce593a1d5a9690d6375b68fcd8ca1d2c4f854803c92dc17d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f13f3e88a045994996a2664e0efedc7dadac3ac53e7cd52b0338cf95b33224bd28d92dbe1909dd0ba66f60b4de1b41dd407c1fd1604b72b295c9368a8526710
|
|
7
|
+
data.tar.gz: aed74598a8cb77c86822ceb2dc457641e4092aa764dba0bbcb3cd281d4a85abe329a8ecda6670e325655afd0470730b9e7699f5be5b0517dec66866f7adcca04
|
|
@@ -51,7 +51,10 @@ module Gitlab
|
|
|
51
51
|
|
|
52
52
|
testcases = search_issues(test: test, issue_type: 'test_case', iid: iid)
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
if iid && testcases.blank?
|
|
55
|
+
warn(%(Test case url "#{test.testcase}" not valid))
|
|
56
|
+
testcases = search_issues(test: test, issue_type: 'test_case')
|
|
57
|
+
end
|
|
55
58
|
|
|
56
59
|
warn(%(Too many test cases found with the file path "#{test.file}" and name "#{test.name}")) if testcases&.many?
|
|
57
60
|
|
|
@@ -71,7 +74,7 @@ module Gitlab
|
|
|
71
74
|
end
|
|
72
75
|
|
|
73
76
|
def iid_from_testcase_url(url)
|
|
74
|
-
return warn(%(
|
|
77
|
+
return warn(%(\nPlease update #{url} to test case url")) if url&.include?('/-/issues/')
|
|
75
78
|
|
|
76
79
|
url && url.split('/').last.to_i
|
|
77
80
|
end
|
data/lib/gitlab/qa/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-qa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.8.
|
|
4
|
+
version: 7.8.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: 2021-
|
|
11
|
+
date: 2021-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|