You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add supplemental kitchen commands to rake task to facilitate development and troubleshooting. Specifically, add create, converge, setup, verify, and destroy.
When using the built-in Kitchen::RakeTasks, there is currently no way to iteratively test minor changes to integration specs without doing a full create-converge-setup-verify-destroy cycle. Adding the aforementioned kitchen commands provides the desired development feature.
Kitchen Output
Rake task before feature implementation:
$ rake -T
rake kitchen:all # Run all test instances
...
rake kitchen:default-centos-6 # Run default-centos-6 test in...
...
Rake task after feature implementation:
$ rake -T
rake kitchen:all # Run all test instances
...
rake kitchen:converge:all # Run all converge instances
...
rake kitchen:create:all # Run all create instances
...
rake kitchen:default-centos-6 # Run default-centos-6 test in...
...
rake kitchen:destroy:all # Run all destroy instances
...
rake kitchen:setup:all # Run all setup instances
...
rake kitchen:verify:all # Run all verify instances
...
The text was updated successfully, but these errors were encountered:
Description
Add supplemental kitchen commands to rake task to facilitate development and troubleshooting. Specifically, add
create
,converge
,setup
,verify
, anddestroy
.Kitchen Version
ChefDK Version
Ruby Version
Platform Version
Mac OS X 10.11.6
Replication Case
When using the built-in
Kitchen::RakeTasks
, there is currently no way to iteratively test minor changes to integration specs without doing a full create-converge-setup-verify-destroy cycle. Adding the aforementioned kitchen commands provides the desired development feature.Kitchen Output
Rake task before feature implementation:
Rake task after feature implementation:
The text was updated successfully, but these errors were encountered: