gitlab-qa 6.6.0 → 6.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +1 -1
- data/.rubocop.yml +2 -0
- data/.rubocop_todo.yml +98 -0
- data/gitlab-qa.gemspec +3 -3
- data/lib/gitlab/qa/component/base.rb +1 -1
- data/lib/gitlab/qa/docker/shellout.rb +1 -1
- data/lib/gitlab/qa/version.rb +1 -1
- metadata +13 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1615e54144d0b669245a15b6a5874efc1d00157fe859dbc6ff2e723380e9da10
|
4
|
+
data.tar.gz: f3ccd0528987c838c793d1bbc2f742833584756bf7a87c58c29b60fa2f7b6ac3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47fce0af7a769ccb9dca14c87f3d1f169495324f753f3db60bb8aa10fc6e05a4612f0bc1704e884dca3d7349bd6d0972d5ca77421bba71f60fd03258e24bc52b
|
7
|
+
data.tar.gz: f1d65176693a0091989392eec19425a34d2cbc1ee92cb428178ee22ca438b19e7246fd1306bfdaaa73f5d531a6c01ad5a6b2ee1324ca72ef0ba9b255ae4782f3
|
data/.gitlab-ci.yml
CHANGED
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2020-10-31 07:26:03 -0700 using RuboCop version 0.82.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 51
|
10
|
+
# Cop supports --auto-correct.
|
11
|
+
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
12
|
+
# URISchemes: http, https
|
13
|
+
Layout/LineLength:
|
14
|
+
Max: 210
|
15
|
+
|
16
|
+
# Offense count: 2
|
17
|
+
# Cop supports --auto-correct.
|
18
|
+
Lint/RedundantCopDisableDirective:
|
19
|
+
Exclude:
|
20
|
+
- 'lib/gitlab/qa/component/staging.rb'
|
21
|
+
- 'lib/gitlab/qa/runtime/scenario.rb'
|
22
|
+
|
23
|
+
# Offense count: 1
|
24
|
+
# Cop supports --auto-correct.
|
25
|
+
# Configuration parameters: PreferredName.
|
26
|
+
Naming/RescuedExceptionsVariableName:
|
27
|
+
Exclude:
|
28
|
+
- 'lib/gitlab/qa/component/staging.rb'
|
29
|
+
|
30
|
+
# Offense count: 1
|
31
|
+
# Cop supports --auto-correct.
|
32
|
+
Performance/RegexpMatch:
|
33
|
+
Exclude:
|
34
|
+
- 'lib/gitlab/qa/component/gitlab.rb'
|
35
|
+
|
36
|
+
# Offense count: 3
|
37
|
+
# Cop supports --auto-correct.
|
38
|
+
RSpec/EmptyLineAfterLetBlock:
|
39
|
+
Exclude:
|
40
|
+
- 'spec/gitlab/qa/support/dev_eeqa_image_spec.rb'
|
41
|
+
|
42
|
+
# Offense count: 4
|
43
|
+
# Cop supports --auto-correct.
|
44
|
+
# Configuration parameters: CustomTransform, IgnoredWords.
|
45
|
+
RSpec/ExampleWording:
|
46
|
+
Exclude:
|
47
|
+
- 'spec/gitlab/qa/component/gitlab_spec.rb'
|
48
|
+
|
49
|
+
# Offense count: 2
|
50
|
+
RSpec/LeakyConstantDeclaration:
|
51
|
+
Exclude:
|
52
|
+
- 'spec/gitlab/qa/scenario/test/instance/deployment_base_spec.rb'
|
53
|
+
|
54
|
+
# Offense count: 93
|
55
|
+
# Cop supports --auto-correct.
|
56
|
+
# Configuration parameters: EnforcedStyle.
|
57
|
+
# SupportedStyles: always, always_true, never
|
58
|
+
Style/FrozenStringLiteralComment:
|
59
|
+
Enabled: false
|
60
|
+
|
61
|
+
# Offense count: 1
|
62
|
+
# Cop supports --auto-correct.
|
63
|
+
Style/HashTransformKeys:
|
64
|
+
Exclude:
|
65
|
+
- 'lib/gitlab/qa/docker/volumes.rb'
|
66
|
+
|
67
|
+
# Offense count: 6
|
68
|
+
# Cop supports --auto-correct.
|
69
|
+
Style/IfUnlessModifier:
|
70
|
+
Exclude:
|
71
|
+
- 'lib/gitlab/qa/component/gitlab.rb'
|
72
|
+
- 'lib/gitlab/qa/release.rb'
|
73
|
+
- 'lib/gitlab/qa/runtime/env.rb'
|
74
|
+
- 'lib/gitlab/qa/runtime/scenario.rb'
|
75
|
+
- 'lib/gitlab/qa/scenario/test/omnibus/upgrade.rb'
|
76
|
+
- 'lib/gitlab/qa/support/http_request.rb'
|
77
|
+
|
78
|
+
# Offense count: 1
|
79
|
+
Style/MethodMissingSuper:
|
80
|
+
Exclude:
|
81
|
+
- 'lib/gitlab/qa/runtime/scenario.rb'
|
82
|
+
|
83
|
+
# Offense count: 1
|
84
|
+
Style/MissingRespondToMissing:
|
85
|
+
Exclude:
|
86
|
+
- 'lib/gitlab/qa/runtime/scenario.rb'
|
87
|
+
|
88
|
+
# Offense count: 5
|
89
|
+
# Cop supports --auto-correct.
|
90
|
+
# Configuration parameters: EnforcedStyle.
|
91
|
+
# SupportedStyles: literals, strict
|
92
|
+
Style/MutableConstant:
|
93
|
+
Exclude:
|
94
|
+
- 'db/migrate/**/*'
|
95
|
+
- 'db/post_migrate/**/*'
|
96
|
+
- 'db/geo/migrate/**/*'
|
97
|
+
- 'lib/gitlab/qa/release.rb'
|
98
|
+
- 'lib/gitlab/qa/report/update_screenshot_path.rb'
|
data/gitlab-qa.gemspec
CHANGED
@@ -20,12 +20,12 @@ Gem::Specification.new do |spec|
|
|
20
20
|
|
21
21
|
# Some dependencies are pinned, to prevent new cops from breaking the CI pipelines
|
22
22
|
spec.add_development_dependency 'climate_control', '~> 0.2'
|
23
|
-
spec.add_development_dependency 'gitlab-styles', '
|
23
|
+
spec.add_development_dependency 'gitlab-styles', '~> 4.3.0'
|
24
24
|
spec.add_development_dependency 'pry', '~> 0.11'
|
25
25
|
spec.add_development_dependency 'rake', '~> 12.2'
|
26
26
|
spec.add_development_dependency 'rspec', '~> 3.7'
|
27
|
-
spec.add_development_dependency 'rubocop', '~> 0.
|
28
|
-
spec.add_development_dependency 'rubocop-rspec', '1.
|
27
|
+
spec.add_development_dependency 'rubocop', '~> 0.82.0'
|
28
|
+
spec.add_development_dependency 'rubocop-rspec', '~> 1.36'
|
29
29
|
spec.add_development_dependency 'webmock', '3.7.0'
|
30
30
|
spec.add_runtime_dependency 'activesupport', '~> 6.0.2'
|
31
31
|
spec.add_runtime_dependency 'gitlab', '~> 4.11.0'
|
@@ -61,7 +61,7 @@ module Gitlab
|
|
61
61
|
end
|
62
62
|
|
63
63
|
def prepare_network
|
64
|
-
if runner_network && !docker.network_exists?(runner_network)
|
64
|
+
if runner_network && !docker.network_exists?(runner_network) # rubocop:disable Style/IfUnlessModifier
|
65
65
|
docker.network_create("--driver=bridge --internal #{runner_network}")
|
66
66
|
end
|
67
67
|
|
@@ -27,7 +27,7 @@ module Gitlab
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
if wait.value.exited? && wait.value.exitstatus.nonzero?
|
30
|
+
if wait.value.exited? && wait.value.exitstatus.nonzero? # rubocop:disable Style/IfUnlessModifier
|
31
31
|
raise StatusError, "Docker command `#{@command.mask_secrets}` failed!"
|
32
32
|
end
|
33
33
|
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: 6.
|
4
|
+
version: 6.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Grzegorz Bizon
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: climate_control
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: gitlab-styles
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 4.3.0
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 4.3.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: pry
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,28 +86,28 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0.
|
89
|
+
version: 0.82.0
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.
|
96
|
+
version: 0.82.0
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: rubocop-rspec
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- -
|
101
|
+
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 1.
|
103
|
+
version: '1.36'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- -
|
108
|
+
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 1.
|
110
|
+
version: '1.36'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: webmock
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -207,6 +207,7 @@ files:
|
|
207
207
|
- ".gitlab/merge_request_templates/Release.md"
|
208
208
|
- ".rspec"
|
209
209
|
- ".rubocop.yml"
|
210
|
+
- ".rubocop_todo.yml"
|
210
211
|
- ".travis.yml"
|
211
212
|
- CONTRIBUTING.md
|
212
213
|
- Gemfile
|