Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update this cloudstack driver to work with Test Kitchen version 3.2.2 #32

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cane
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--style-measure 140
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.25.0 / Unreleased

* Updated the plugin to support test-kitchen 3.x


## 0.1.0 / Unreleased

* Initial release
5 changes: 1 addition & 4 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
require 'bundler/gem_tasks'
require 'cane/rake_task'
require 'tailor/rake_task'

desc 'Run cane to check quality metrics'
Cane::RakeTask.new do |cane|
cane.canefile = './.cane'
end

Tailor::RakeTask.new

desc 'Display LOC stats'
task :stats do
puts "\n## Production Code Stats"
sh 'countloc -r lib'
end

desc 'Run all quality tasks'
task :quality => [:cane, :tailor, :stats]
task :quality => [:cane, :stats]

task :default => [:quality]
3 changes: 1 addition & 2 deletions kitchen-cloudstack.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']

spec.add_dependency 'test-kitchen', '>= 1.0.0', "< 3"
spec.add_dependency 'test-kitchen', '>= 1.0.0', "< 4"
spec.add_dependency 'fog-cloudstack', '~> 0.1.0'

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'

spec.add_development_dependency 'cane', '~> 3'
spec.add_development_dependency 'tailor', '~> 1'
spec.add_development_dependency 'countloc'
spec.add_development_dependency 'pry'
end
Loading