diff --git a/README.md b/README.md index 571030fe4..d87160e7d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/Rakefile b/Rakefile index 75b104199..b0fd446de 100644 --- a/Rakefile +++ b/Rakefile @@ -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