-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Rakefile
68 lines (60 loc) · 2.02 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
require 'rspec/core/rake_task'
namespace :test do
namespace :spec do
desc 'Run spec tests'
RSpec::Core::RakeTask.new(:run) do |t|
t.rspec_opts = ['--color']
t.pattern = 'spec/'
end
desc 'Run spec tests with coverage'
RSpec::Core::RakeTask.new(:coverage) do |t|
ENV['BEAKER_VMWARE_COVERAGE'] = 'y'
t.rspec_opts = ['--color']
t.pattern = 'spec/'
end
end
namespace :acceptance do
desc <<~EOS
A quick acceptance test, named because it has no pre-suites to run
EOS
task :quick do
# setup & load_path of beaker's acceptance base and lib directory
beaker_gem_spec = Gem::Specification.find_by_name('beaker')
beaker_gem_dir = beaker_gem_spec.gem_dir
beaker_test_base_dir = File.join(beaker_gem_dir, 'acceptance/tests/base')
load_path_option = File.join(beaker_gem_dir, 'acceptance/lib')
sh('beaker',
'--hosts', 'acceptance/config/nodes/test-nodes.yml',
'--tests', beaker_test_base_dir,
'--log-level', 'debug',
'--load-path', load_path_option)
end
end
end
# namespace-named default tasks.
# these are the default tasks invoked when only the namespace is referenced.
# they're needed because `task :default` in those blocks doesn't work as expected.
task 'test:spec' => 'test:spec:run'
task 'test:acceptance' => 'test:acceptance:quick'
# global defaults
task test: 'test:spec'
task default: :test
begin
require 'rubygems'
require 'github_changelog_generator/task'
rescue LoadError
# github_changelog_generator is an optional group
else
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog github_actions]
config.user = 'voxpupuli'
config.project = 'beaker-vmware'
gem_version = Gem::Specification.load("#{config.project}.gemspec").version
config.future_release = gem_version
end
end
begin
require 'voxpupuli/rubocop/rake'
rescue LoadError
# the voxpupuli-rubocop gem is optional
end