Merge pull request #37 from chef/kitchen-test

run kitchen test instead of converge
This commit is contained in:
Christoph Hartmann 2015-09-22 16:16:32 +02:00
commit f832001f10
2 changed files with 2 additions and 2 deletions

View file

@ -122,7 +122,7 @@ rake test:runner
CONCURRENCY=3 rake test:runner
```
This will go to `test/runner` and run `kitchen converge`. You can test specific
This will go to `test/runner` and run `kitchen test`. You can test specific
operating systems and configurations via test-kitchen.
## Contributing

View file

@ -40,6 +40,6 @@ namespace :test do
task :runner do
concurrency = ENV['CONCURRENCY'] || 4
path = File.join(File.dirname(__FILE__), 'test', 'runner')
sh('sh', '-c', "cd #{path} && kitchen converge -c #{concurrency}")
sh('sh', '-c', "cd #{path} && kitchen test -c #{concurrency}")
end
end