puppetlabs_spec_helper 7.0.2 → 7.0.4

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: aff49125194753239b27f4dff9121d08a66bd9886dbe1abf41f377e6af82a264
4
- data.tar.gz: f2f8f5d3ef921b6bd0471c019483540f93e6b4593e46836084d52f4d5d11a482
3
+ metadata.gz: b43b9b0bc503cc22827d130ea6b8b38c8f47ddc411fa01d475358bf1b3d84662
4
+ data.tar.gz: fae07b2e2c37f912afdec1e701a44ff97765558b33e25525ba1a5aaa8d69b343
5
5
  SHA512:
6
- metadata.gz: 66ab221f58ed2e14613e6939d531021a60fb7bed2ac8dd7a149239700558ccc8aecadd5734439bdf860d224fda8be347c6e48cfa903e7140f8978e3c7797d8b4
7
- data.tar.gz: 6e80a70f589f871725113e794d42a1b1edbc2f2dc734ab7fa030a9d76fb267b9c99154945250a828783963298bef06f26d8ff36128bc4d6c5b527292ec337e61
6
+ metadata.gz: 1405267c761ea07175994796430a21dbedec7d85ef4f8fdfe68c0d5f6b8653d03a32d094e35b519905532a6f82148823ca1c627af2aaff5bd099f69ac87bd067
7
+ data.tar.gz: e6a2cd716e27ba64e551e831be688db045edf9999f655ad9fbce793fb563f769523a62bff104bab6cfb38c635b35a6255b8484d0cc3c9a36aca4c532897093b8
data/.rubocop.yml CHANGED
@@ -17,3 +17,6 @@ AllCops:
17
17
  # Disabled
18
18
  Style/ClassAndModuleChildren:
19
19
  Enabled: false
20
+
21
+ Layout/LineLength:
22
+ Max: 200
data/README.md CHANGED
@@ -410,7 +410,7 @@ You can enable it, set the following environment variable:s
410
410
 
411
411
  ``SIMPLECOV=yes``
412
412
 
413
- Remember to add the simplecov-console and codecov gems to your `Gemfile`. If you run `spec:simplecov` on Travis-CI or any of the other supported CI services, reports gets automatically uploaded to https://codecov.io/ .
413
+ Remember to add the simplecov-console gem to your `Gemfile`. If you run `spec:simplecov` on Travis-CI or any of the other supported CI services, reports get generated which can then be uploaded to [codecov.io](https://codecov.io) with the recommended [codecov uploader](https://docs.codecov.com/docs/codecov-uploader).
414
414
 
415
415
  Some Notes for Windows Users
416
416
  ============================
@@ -20,35 +20,42 @@ env_module_path = ENV.fetch('MODULEPATH', nil)
20
20
  module_path = File.join(fixture_path, 'modules')
21
21
 
22
22
  module_path = [module_path, env_module_path].join(File::PATH_SEPARATOR) if env_module_path
23
+
23
24
  if ENV['SIMPLECOV'] == 'yes'
24
25
  begin
25
26
  require 'simplecov'
26
27
  require 'simplecov-console'
28
+ rescue LoadError
29
+ raise 'Add the simplecov and simplecov-console gems to Gemfile to enable this task'
30
+ end
31
+
32
+ SimpleCov.formatters = [
33
+ SimpleCov::Formatter::HTMLFormatter,
34
+ SimpleCov::Formatter::Console
35
+ ]
36
+
37
+ begin
27
38
  require 'codecov'
39
+ SimpleCov.formatters << SimpleCov::Formatter::Codecov
40
+ rescue LoadError
41
+ # continue without codecov, we could warn here but we want to avoid its use if possible
42
+ end
43
+
44
+ SimpleCov.start do
45
+ track_files 'lib/**/*.rb'
46
+ add_filter '/spec'
28
47
 
29
- SimpleCov.formatters = [
30
- SimpleCov::Formatter::HTMLFormatter,
31
- SimpleCov::Formatter::Console,
32
- SimpleCov::Formatter::Codecov
33
- ]
34
- SimpleCov.start do
35
- track_files 'lib/**/*.rb'
36
- add_filter '/spec'
37
-
38
- # do not track vendored files
39
- add_filter '/vendor'
40
- add_filter '/.vendor'
41
-
42
- # do not track gitignored files
43
- # this adds about 4 seconds to the coverage check
44
- # this could definitely be optimized
45
- add_filter do |f|
46
- # system returns true if exit status is 0, which with git-check-ignore means file is ignored
47
- system("git check-ignore --quiet #{f.filename}")
48
- end
48
+ # do not track vendored files
49
+ add_filter '/vendor'
50
+ add_filter '/.vendor'
51
+
52
+ # do not track gitignored files
53
+ # this adds about 4 seconds to the coverage check
54
+ # this could definitely be optimized
55
+ add_filter do |f|
56
+ # system returns true if exit status is 0, which with git-check-ignore means file is ignored
57
+ system("git check-ignore --quiet #{f.filename}")
49
58
  end
50
- rescue LoadError
51
- raise 'Add the simplecov, simplecov-console, codecov gems to Gemfile to enable this task'
52
59
  end
53
60
  end
54
61
 
@@ -176,7 +176,7 @@ puppet_lint_disable_checks = %w[
176
176
  ]
177
177
 
178
178
  puppet_lint_disable_checks.each do |check|
179
- PuppetLint.configuration.send("disable_#{check}")
179
+ PuppetLint.configuration.send(:"disable_#{check}")
180
180
  end
181
181
  PuppetLint::RakeTask.new(:lint)
182
182
 
@@ -107,7 +107,7 @@ module PuppetlabsSpecHelper
107
107
 
108
108
  fixtures = fixtures['fixtures']
109
109
 
110
- fixtures['symlinks'] = auto_symlink if fixtures['symlinks'].nil?
110
+ fixtures['symlinks'] = fixtures['symlinks'].nil? ? auto_symlink : auto_symlink.merge!(fixtures['symlinks'])
111
111
 
112
112
  result = {}
113
113
  if fixtures.include?(category) && !fixtures[category].nil?
@@ -151,7 +151,7 @@ module PuppetlabsSpecHelper
151
151
  return hash unless hash['scm'] == 'git'
152
152
 
153
153
  # Forward slashes in the ref aren't allowed. And is probably a branch name.
154
- raise ArgumentError, "The ref for #{hash['target']} is invalid (Contains a forward slash). If this is a branch name, please use the 'branch' setting instead." if hash['ref'].include?('/')
154
+ raise ArgumentError, "The ref for #{hash['target']} is invalid (Contains a forward slash). If this is a branch name, please use the 'branch' setting instead." if hash['ref']&.include?('/')
155
155
 
156
156
  hash
157
157
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PuppetlabsSpecHelper
4
- VERSION = '7.0.2'
4
+ VERSION = '7.0.4'
5
5
  end
data/spec/spec_helper.rb CHANGED
@@ -1,15 +1,18 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  if ENV['COVERAGE'] == 'yes'
4
- require 'simplecov'
5
- require 'simplecov-console'
6
- require 'codecov'
4
+ begin
5
+ require 'simplecov'
6
+ require 'simplecov-console'
7
+ rescue LoadError
8
+ raise 'Add the simplecov and simplecov-console gems to Gemfile to enable this task'
9
+ end
7
10
 
8
11
  SimpleCov.formatters = [
9
12
  SimpleCov::Formatter::HTMLFormatter,
10
- SimpleCov::Formatter::Console,
11
- SimpleCov::Formatter::Codecov
13
+ SimpleCov::Formatter::Console
12
14
  ]
15
+
13
16
  SimpleCov.start do
14
17
  track_files 'lib/**/*.rb'
15
18
 
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppetlabs_spec_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.2
4
+ version: 7.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet, Inc.
8
8
  - Community Contributors
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-12-12 00:00:00.000000000 Z
12
+ date: 2024-02-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mocha
@@ -65,14 +65,14 @@ dependencies:
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '3.0'
68
+ version: '4.0'
69
69
  type: :runtime
70
70
  prerelease: false
71
71
  version_requirements: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '3.0'
75
+ version: '4.0'
76
76
  - !ruby/object:Gem::Dependency
77
77
  name: rspec-github
78
78
  requirement: !ruby/object:Gem::Requirement
@@ -135,7 +135,7 @@ homepage: http://github.com/puppetlabs/puppetlabs_spec_helper
135
135
  licenses:
136
136
  - Apache-2.0
137
137
  metadata: {}
138
- post_install_message:
138
+ post_install_message:
139
139
  rdoc_options: []
140
140
  require_paths:
141
141
  - lib
@@ -151,8 +151,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
151
  version: '0'
152
152
  requirements:
153
153
  - puppet, >= 7.0.0
154
- rubygems_version: 3.4.1
155
- signing_key:
154
+ rubygems_version: 3.1.6
155
+ signing_key:
156
156
  specification_version: 4
157
157
  summary: Standard tasks and configuration for module spec tests.
158
158
  test_files: []