Add integration task
Add missing gate integration task, but use the one from Common cookbook to make future updates easy. Change-Id: I32611ef66a812bfba70f9f392d7955114018318f
This commit is contained in:
parent
9edde995d9
commit
8a2f26d6fe
14
Rakefile
14
Rakefile
@ -2,25 +2,39 @@ task default: ["test"]
|
|||||||
|
|
||||||
task :test => [:lint, :style, :unit]
|
task :test => [:lint, :style, :unit]
|
||||||
|
|
||||||
|
desc "Vendor the cookbooks in the Berksfile"
|
||||||
task :berks_prep do
|
task :berks_prep do
|
||||||
sh %{chef exec berks vendor}
|
sh %{chef exec berks vendor}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc "Run FoodCritic (lint) tests"
|
||||||
task :lint do
|
task :lint do
|
||||||
sh %{chef exec foodcritic --epic-fail any --tags ~FC003 --tags ~FC023 .}
|
sh %{chef exec foodcritic --epic-fail any --tags ~FC003 --tags ~FC023 .}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc "Run RuboCop (style) tests"
|
||||||
task :style do
|
task :style do
|
||||||
sh %{chef exec rubocop}
|
sh %{chef exec rubocop}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc "Run RSpec (unit) tests"
|
||||||
task :unit => :berks_prep do
|
task :unit => :berks_prep do
|
||||||
sh %{chef exec rspec --format documentation}
|
sh %{chef exec rspec --format documentation}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc "Remove the berks-cookbooks directory and the Berksfile.lock"
|
||||||
task :clean do
|
task :clean do
|
||||||
rm_rf [
|
rm_rf [
|
||||||
'berks-cookbooks',
|
'berks-cookbooks',
|
||||||
'Berksfile.lock'
|
'Berksfile.lock'
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc "All-in-One Neutron build Infra using Common task"
|
||||||
|
task :integration do
|
||||||
|
# Use the common integration task
|
||||||
|
sh %(wget -nv -t 3 -O Rakefile-Common https://raw.githubusercontent.com/openstack/cookbook-openstack-common/master/Rakefile)
|
||||||
|
load './Rakefile-Common'
|
||||||
|
Rake::Task["common_integration"].invoke
|
||||||
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user