test-kitchen 1.2.1 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.cane +1 -1
- data/.rubocop.yml +3 -0
- data/.travis.yml +20 -9
- data/CHANGELOG.md +219 -108
- data/Gemfile +10 -6
- data/Guardfile +38 -9
- data/README.md +11 -1
- data/Rakefile +21 -37
- data/bin/kitchen +4 -4
- data/features/kitchen_action_commands.feature +161 -0
- data/features/kitchen_console_command.feature +34 -0
- data/features/kitchen_diagnose_command.feature +64 -0
- data/features/kitchen_init_command.feature +29 -17
- data/features/kitchen_list_command.feature +2 -2
- data/features/kitchen_login_command.feature +56 -0
- data/features/{sink_command.feature → kitchen_sink_command.feature} +0 -0
- data/features/kitchen_test_command.feature +88 -0
- data/features/step_definitions/gem_steps.rb +8 -6
- data/features/step_definitions/git_steps.rb +4 -2
- data/features/step_definitions/output_steps.rb +5 -0
- data/features/support/env.rb +12 -9
- data/lib/kitchen.rb +60 -38
- data/lib/kitchen/base64_stream.rb +55 -0
- data/lib/kitchen/busser.rb +124 -58
- data/lib/kitchen/cli.rb +121 -38
- data/lib/kitchen/collection.rb +3 -3
- data/lib/kitchen/color.rb +4 -4
- data/lib/kitchen/command.rb +78 -11
- data/lib/kitchen/command/action.rb +3 -2
- data/lib/kitchen/command/console.rb +12 -5
- data/lib/kitchen/command/diagnose.rb +17 -3
- data/lib/kitchen/command/driver_discover.rb +26 -7
- data/lib/kitchen/command/exec.rb +41 -0
- data/lib/kitchen/command/list.rb +44 -14
- data/lib/kitchen/command/login.rb +2 -1
- data/lib/kitchen/command/sink.rb +2 -1
- data/lib/kitchen/command/test.rb +5 -4
- data/lib/kitchen/config.rb +146 -14
- data/lib/kitchen/configurable.rb +314 -0
- data/lib/kitchen/data_munger.rb +522 -18
- data/lib/kitchen/diagnostic.rb +43 -4
- data/lib/kitchen/driver.rb +4 -4
- data/lib/kitchen/driver/base.rb +80 -115
- data/lib/kitchen/driver/dummy.rb +34 -6
- data/lib/kitchen/driver/proxy.rb +14 -3
- data/lib/kitchen/driver/ssh_base.rb +61 -7
- data/lib/kitchen/errors.rb +109 -9
- data/lib/kitchen/generator/driver_create.rb +39 -5
- data/lib/kitchen/generator/init.rb +130 -45
- data/lib/kitchen/instance.rb +162 -28
- data/lib/kitchen/lazy_hash.rb +79 -7
- data/lib/kitchen/loader/yaml.rb +159 -27
- data/lib/kitchen/logger.rb +267 -21
- data/lib/kitchen/logging.rb +30 -3
- data/lib/kitchen/login_command.rb +11 -2
- data/lib/kitchen/metadata_chopper.rb +2 -2
- data/lib/kitchen/provisioner.rb +4 -4
- data/lib/kitchen/provisioner/base.rb +107 -103
- data/lib/kitchen/provisioner/chef/berkshelf.rb +36 -8
- data/lib/kitchen/provisioner/chef/librarian.rb +40 -11
- data/lib/kitchen/provisioner/chef_base.rb +206 -167
- data/lib/kitchen/provisioner/chef_solo.rb +25 -7
- data/lib/kitchen/provisioner/chef_zero.rb +105 -29
- data/lib/kitchen/provisioner/dummy.rb +1 -1
- data/lib/kitchen/provisioner/shell.rb +21 -6
- data/lib/kitchen/rake_tasks.rb +8 -3
- data/lib/kitchen/shell_out.rb +15 -18
- data/lib/kitchen/ssh.rb +122 -27
- data/lib/kitchen/state_file.rb +24 -7
- data/lib/kitchen/thor_tasks.rb +9 -4
- data/lib/kitchen/util.rb +43 -118
- data/lib/kitchen/version.rb +1 -1
- data/lib/vendor/hash_recursive_merge.rb +10 -2
- data/spec/kitchen/base64_stream_spec.rb +77 -0
- data/spec/kitchen/busser_spec.rb +490 -0
- data/spec/kitchen/collection_spec.rb +10 -10
- data/spec/kitchen/color_spec.rb +2 -2
- data/spec/kitchen/config_spec.rb +234 -62
- data/spec/kitchen/configurable_spec.rb +490 -0
- data/spec/kitchen/data_munger_spec.rb +1070 -862
- data/spec/kitchen/diagnostic_spec.rb +79 -0
- data/spec/kitchen/driver/base_spec.rb +80 -85
- data/spec/kitchen/driver/dummy_spec.rb +43 -14
- data/spec/kitchen/driver/proxy_spec.rb +134 -0
- data/spec/kitchen/driver/ssh_base_spec.rb +644 -0
- data/spec/kitchen/driver_spec.rb +15 -15
- data/spec/kitchen/errors_spec.rb +309 -0
- data/spec/kitchen/instance_spec.rb +143 -46
- data/spec/kitchen/lazy_hash_spec.rb +36 -9
- data/spec/kitchen/loader/yaml_spec.rb +237 -226
- data/spec/kitchen/logger_spec.rb +419 -0
- data/spec/kitchen/logging_spec.rb +59 -0
- data/spec/kitchen/login_command_spec.rb +49 -0
- data/spec/kitchen/metadata_chopper_spec.rb +82 -0
- data/spec/kitchen/platform_spec.rb +4 -4
- data/spec/kitchen/provisioner/base_spec.rb +65 -125
- data/spec/kitchen/provisioner/chef_base_spec.rb +798 -0
- data/spec/kitchen/provisioner/chef_solo_spec.rb +316 -0
- data/spec/kitchen/provisioner/chef_zero_spec.rb +624 -0
- data/spec/kitchen/provisioner/shell_spec.rb +269 -0
- data/spec/kitchen/provisioner_spec.rb +6 -6
- data/spec/kitchen/shell_out_spec.rb +143 -0
- data/spec/kitchen/ssh_spec.rb +683 -0
- data/spec/kitchen/state_file_spec.rb +28 -21
- data/spec/kitchen/suite_spec.rb +7 -7
- data/spec/kitchen/util_spec.rb +68 -10
- data/spec/kitchen_spec.rb +107 -0
- data/spec/spec_helper.rb +18 -13
- data/support/chef-client-zero.rb +10 -9
- data/support/chef_helpers.sh +16 -0
- data/support/download_helpers.sh +109 -0
- data/test-kitchen.gemspec +42 -33
- metadata +107 -33
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 171b533c12aff1ff5286b5104bc974626dbf07f9
|
4
|
+
data.tar.gz: 0fd02124f28895f3cf0215c465226927bd1affc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 173544009b952361cf1cde034662ee8c48781ed2f7ffd7c5a86a0211f331f8ebba0e73e1b339c53a920697fa99621e98124ffda5919793e8926090813de5f4d3
|
7
|
+
data.tar.gz: 5becb091d620d1b2c8167f41a410fa89734aefc7110694518f22a5fcba91afa84d1bcf6317a65ef9ac1bbef5c5c3bb82348178d70b0a16917bd584466feb66fe
|
data/.cane
CHANGED
data/.rubocop.yml
ADDED
data/.travis.yml
CHANGED
@@ -1,30 +1,41 @@
|
|
1
1
|
language: ruby
|
2
2
|
|
3
3
|
rvm:
|
4
|
-
- 2.1
|
4
|
+
- 2.1
|
5
5
|
- 2.0.0
|
6
6
|
- 1.9.3
|
7
|
-
- 1.9.2
|
8
7
|
- ruby-head
|
9
|
-
- jruby-19mode
|
10
8
|
|
11
9
|
env:
|
10
|
+
- RUBYGEMS_VERSION=
|
11
|
+
- RUBYGEMS_VERSION=2.2.2
|
12
12
|
- RUBYGEMS_VERSION=2.1.11
|
13
13
|
- RUBYGEMS_VERSION=2.0.14
|
14
|
-
- RUBYGEMS_VERSION=1.8.
|
14
|
+
- RUBYGEMS_VERSION=1.8.29
|
15
15
|
|
16
16
|
before_install:
|
17
|
-
- gem update --system $RUBYGEMS_VERSION
|
17
|
+
- if [ -n "$RUBYGEMS_VERSION" ]; then gem update --system $RUBYGEMS_VERSION; fi
|
18
18
|
- gem --version
|
19
19
|
|
20
20
|
bundler_args: --without guard
|
21
21
|
|
22
|
+
sudo: false
|
23
|
+
|
22
24
|
matrix:
|
23
25
|
allow_failures:
|
24
26
|
- rvm: ruby-head
|
25
|
-
- rvm: jruby-19mode
|
26
27
|
exclude:
|
28
|
+
- rvm: 2.1
|
29
|
+
env: RUBYGEMS_VERSION=1.8.29
|
27
30
|
- rvm: 2.0.0
|
28
|
-
env: RUBYGEMS_VERSION=1.8.
|
29
|
-
- rvm:
|
30
|
-
env: RUBYGEMS_VERSION=1.8.
|
31
|
+
env: RUBYGEMS_VERSION=1.8.29
|
32
|
+
- rvm: ruby-head
|
33
|
+
env: RUBYGEMS_VERSION=1.8.29
|
34
|
+
|
35
|
+
notifications:
|
36
|
+
irc: "chat.freenode.net#kitchenci"
|
37
|
+
|
38
|
+
addons:
|
39
|
+
code_climate:
|
40
|
+
repo_token:
|
41
|
+
secure: "lcqi3hbalLTinxwsl+um1aN1dgijBrODSMseGEJMJGkofz3VZ+Ofuuwp9x9VjvewuiUFHsiPD5SQ6hx8N+L3wXB6qA+HTmIrXecL7VjehbImEyOuu4/++vcTdpTINAd2Qt/KuJ1eY0okSwVmvtX1VD8gYD8yrlMKdj6uexf8Bgs="
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,51 @@
|
|
1
|
+
## 1.3.0 / 2014-12-1X
|
2
|
+
|
3
|
+
### Upstream changes
|
4
|
+
|
5
|
+
* Pull request [#558][], pull request [#557][]: Update omnibus download URL to chef.io. ([@scarolan][])
|
6
|
+
* Pull request [#531][], pull request [#521][]: Update mixlib-shellout dependency to be greater or equal to 1.2 and less than 3.0. ([@lamont-granquist][])
|
7
|
+
|
8
|
+
### Bug fixes
|
9
|
+
|
10
|
+
* Pull request [#555][], issue [#524][], issue [#343][]: (**Breaking**) Correct global YAML merge order to lowest (from highest).
|
11
|
+
* Pull request [#416][]: Use `Gem::GemRunner` to install drivers with `kitchen init` generator (addresses opscode/chef-dk[#20][]). ([@mcquin][])
|
12
|
+
* Pull request [#399][]: Sleep before retrying SSH#establish_connection. ([@fnichol][])
|
13
|
+
* Pull request [#527][]: Rescue SSH authentication failures to use retry/timeout connection logic. ([@chrishenry][])
|
14
|
+
* Pull request [#363][]: Ensure that integer chef config attributes get placed in solo.rb/client.rb properly. ([@benlangfeld][], [@sethvargo][])
|
15
|
+
* Pull request [#431][]: Check for zero byte state files. ([@rhass][])
|
16
|
+
* Pull request [#554][], pull request [#543][]: Replace `/` with `-` in Instance names, allowing instance names to be used as server hostnames in most cases. ([@grubernaut][], [@fnichol][])
|
17
|
+
|
18
|
+
### New features
|
19
|
+
|
20
|
+
* Pull request [#373][]: Add new subcommand 'exec'. ([@sawanoboly][])
|
21
|
+
* Pull request [#397][]: Introduce the `:chef_zero_port` config attribute to the chef_zero provisioner. ([@jtgiri][])
|
22
|
+
* Pull request [#381][], pull request [#456][]: Add configurable defaults for chef-solo, chef-client, and chef omnibus paths. ([@sethvargo][], [@robcoward][], [@fnichol][])
|
23
|
+
* Pull request [#489][]: Introduce the `:chef_omnibus_install_options` config attribute to be able to pass additional arguments to the Chef installer script. ([@ringods][])
|
24
|
+
* Pull request [#549][]: Introduce the `:chef_zero_host` config attribute to the chef_zero provisioner. ([@jochenseeber][])
|
25
|
+
* Pull request [#454][]: Customize `:ssh_timeout` and `:ssh_retries`. ([@ekrupnik][])
|
26
|
+
* Pull request [#510][], issue [#166][]: Add support for site-cookbooks when using Librarian. ([@jstriebel][])
|
27
|
+
|
28
|
+
### Improvements
|
29
|
+
|
30
|
+
* Pull request [#427][]: Backfilling spec coverage and refactoring: technical debt edition. Epically huge, finally complete. ([@fnichol][])
|
31
|
+
* Pull request [#478][], issue [#433][], issue [#352][]: Buffer Logger output & fix Chef run output formatting. ([@fnichol][])
|
32
|
+
* Pull request [#481][]: Disable color output when no TTY is present. ([@fnichol][])
|
33
|
+
* Pull request [#526][], pull request [#462][], issue [#375][]: Die on `kitchen login` if instance is not created. ([@daniellockard][], [@fnichol][])
|
34
|
+
* Pull request [#504][]: Fix 2 tests in `SSHBase` to reflect their intent. ([@jgoldschrafe][])
|
35
|
+
* Pull request [#450][]: Update help description for CLI subcommands. ([@MarkGibbons][])
|
36
|
+
* Pull request [#477][]: Bump 'kitchen help' into new Usage section in README and add how to use "-l". ([@curiositycasualty][])
|
37
|
+
* Pull request [#567][]: Pass the template filename down to Erb for `__FILE__` et al. ([@coderanger][])
|
38
|
+
* Pull request [#498][]: Fix doc comment in `Kitchen::Loader::YAML.new`. ([@jaimegildesagredo][])
|
39
|
+
* Pull request [#507][]: Clarify comments in configuration loader. ([@martinb3][])
|
40
|
+
* Pull request [#366][]: Fix glaring "Transfering" -> "Transferring" typo. ([@srenatus][])
|
41
|
+
* Pull request [#457][]: Fix "confiuration" -> "configuration" typo in README. ([@michaelkirk][])
|
42
|
+
* Pull request [#370][]: Use Ruby 2.1 instead of 2.1.0 for CI. ([@justincampbell][])
|
43
|
+
|
44
|
+
### Heads up
|
45
|
+
|
46
|
+
* Drop Ruby 1.9.2 from TravisCI build matrix (support for Ruby 1.9.2 will be a "best effort"). ([@fnichol][])
|
47
|
+
|
48
|
+
|
1
49
|
## 1.2.1 / 2014-02-12
|
2
50
|
|
3
51
|
### Bug fixes
|
@@ -364,156 +412,219 @@
|
|
364
412
|
The initial release.
|
365
413
|
|
366
414
|
<!--- The following link definition list is generated by PimpMyChangelog --->
|
367
|
-
[#
|
368
|
-
[#
|
369
|
-
[#
|
370
|
-
[#
|
371
|
-
[#
|
372
|
-
[#
|
373
|
-
[#
|
374
|
-
[#
|
375
|
-
[#
|
376
|
-
[#
|
377
|
-
[#
|
378
|
-
[#
|
379
|
-
[#
|
380
|
-
[#
|
381
|
-
[#
|
382
|
-
[#
|
383
|
-
[#
|
384
|
-
[#
|
385
|
-
[#
|
386
|
-
[#
|
387
|
-
[#
|
388
|
-
[#
|
389
|
-
[#
|
390
|
-
[#
|
391
|
-
[#
|
392
|
-
[#
|
393
|
-
[#
|
394
|
-
[#
|
395
|
-
[#
|
396
|
-
[#
|
397
|
-
[#
|
398
|
-
[#
|
399
|
-
[#
|
400
|
-
[#
|
401
|
-
[#
|
402
|
-
[#
|
403
|
-
[#
|
404
|
-
[#
|
405
|
-
[#
|
406
|
-
[#
|
407
|
-
[#
|
408
|
-
[#
|
409
|
-
[#
|
410
|
-
[#
|
411
|
-
[#
|
412
|
-
[#
|
413
|
-
[#
|
414
|
-
[#
|
415
|
-
[#
|
416
|
-
[#
|
417
|
-
[#
|
418
|
-
[#
|
419
|
-
[#
|
420
|
-
[#
|
421
|
-
[#
|
422
|
-
[#
|
423
|
-
[#
|
424
|
-
[#
|
425
|
-
[#
|
426
|
-
[#
|
427
|
-
[#
|
428
|
-
[#
|
429
|
-
[#
|
430
|
-
[#
|
431
|
-
[#
|
432
|
-
[#
|
433
|
-
[#
|
434
|
-
[#
|
435
|
-
[#
|
436
|
-
[#
|
437
|
-
[#
|
438
|
-
[#
|
439
|
-
[#
|
440
|
-
[#
|
441
|
-
[#
|
442
|
-
[#
|
443
|
-
[#
|
444
|
-
[#
|
445
|
-
[#
|
446
|
-
[#
|
447
|
-
[#
|
448
|
-
[#
|
449
|
-
[#
|
450
|
-
[#
|
451
|
-
[#
|
452
|
-
[#
|
453
|
-
[#
|
454
|
-
[#
|
455
|
-
[#
|
456
|
-
[#
|
457
|
-
[#
|
458
|
-
[#
|
459
|
-
[#
|
460
|
-
[#
|
461
|
-
[#
|
462
|
-
[#
|
463
|
-
[#
|
464
|
-
[#
|
465
|
-
[#
|
466
|
-
[#
|
467
|
-
[#
|
468
|
-
[#
|
469
|
-
[#
|
470
|
-
[#
|
471
|
-
[#
|
472
|
-
[#
|
473
|
-
[#
|
474
|
-
[#
|
415
|
+
[#20]: https://github.com/test-kitchen/test-kitchen/issues/20
|
416
|
+
[#31]: https://github.com/test-kitchen/test-kitchen/issues/31
|
417
|
+
[#61]: https://github.com/test-kitchen/test-kitchen/issues/61
|
418
|
+
[#64]: https://github.com/test-kitchen/test-kitchen/issues/64
|
419
|
+
[#65]: https://github.com/test-kitchen/test-kitchen/issues/65
|
420
|
+
[#71]: https://github.com/test-kitchen/test-kitchen/issues/71
|
421
|
+
[#73]: https://github.com/test-kitchen/test-kitchen/issues/73
|
422
|
+
[#74]: https://github.com/test-kitchen/test-kitchen/issues/74
|
423
|
+
[#76]: https://github.com/test-kitchen/test-kitchen/issues/76
|
424
|
+
[#77]: https://github.com/test-kitchen/test-kitchen/issues/77
|
425
|
+
[#80]: https://github.com/test-kitchen/test-kitchen/issues/80
|
426
|
+
[#81]: https://github.com/test-kitchen/test-kitchen/issues/81
|
427
|
+
[#82]: https://github.com/test-kitchen/test-kitchen/issues/82
|
428
|
+
[#84]: https://github.com/test-kitchen/test-kitchen/issues/84
|
429
|
+
[#90]: https://github.com/test-kitchen/test-kitchen/issues/90
|
430
|
+
[#92]: https://github.com/test-kitchen/test-kitchen/issues/92
|
431
|
+
[#94]: https://github.com/test-kitchen/test-kitchen/issues/94
|
432
|
+
[#97]: https://github.com/test-kitchen/test-kitchen/issues/97
|
433
|
+
[#98]: https://github.com/test-kitchen/test-kitchen/issues/98
|
434
|
+
[#99]: https://github.com/test-kitchen/test-kitchen/issues/99
|
435
|
+
[#102]: https://github.com/test-kitchen/test-kitchen/issues/102
|
436
|
+
[#104]: https://github.com/test-kitchen/test-kitchen/issues/104
|
437
|
+
[#105]: https://github.com/test-kitchen/test-kitchen/issues/105
|
438
|
+
[#108]: https://github.com/test-kitchen/test-kitchen/issues/108
|
439
|
+
[#111]: https://github.com/test-kitchen/test-kitchen/issues/111
|
440
|
+
[#112]: https://github.com/test-kitchen/test-kitchen/issues/112
|
441
|
+
[#113]: https://github.com/test-kitchen/test-kitchen/issues/113
|
442
|
+
[#114]: https://github.com/test-kitchen/test-kitchen/issues/114
|
443
|
+
[#116]: https://github.com/test-kitchen/test-kitchen/issues/116
|
444
|
+
[#119]: https://github.com/test-kitchen/test-kitchen/issues/119
|
445
|
+
[#120]: https://github.com/test-kitchen/test-kitchen/issues/120
|
446
|
+
[#122]: https://github.com/test-kitchen/test-kitchen/issues/122
|
447
|
+
[#123]: https://github.com/test-kitchen/test-kitchen/issues/123
|
448
|
+
[#124]: https://github.com/test-kitchen/test-kitchen/issues/124
|
449
|
+
[#128]: https://github.com/test-kitchen/test-kitchen/issues/128
|
450
|
+
[#129]: https://github.com/test-kitchen/test-kitchen/issues/129
|
451
|
+
[#131]: https://github.com/test-kitchen/test-kitchen/issues/131
|
452
|
+
[#132]: https://github.com/test-kitchen/test-kitchen/issues/132
|
453
|
+
[#134]: https://github.com/test-kitchen/test-kitchen/issues/134
|
454
|
+
[#136]: https://github.com/test-kitchen/test-kitchen/issues/136
|
455
|
+
[#137]: https://github.com/test-kitchen/test-kitchen/issues/137
|
456
|
+
[#140]: https://github.com/test-kitchen/test-kitchen/issues/140
|
457
|
+
[#141]: https://github.com/test-kitchen/test-kitchen/issues/141
|
458
|
+
[#142]: https://github.com/test-kitchen/test-kitchen/issues/142
|
459
|
+
[#147]: https://github.com/test-kitchen/test-kitchen/issues/147
|
460
|
+
[#151]: https://github.com/test-kitchen/test-kitchen/issues/151
|
461
|
+
[#152]: https://github.com/test-kitchen/test-kitchen/issues/152
|
462
|
+
[#153]: https://github.com/test-kitchen/test-kitchen/issues/153
|
463
|
+
[#154]: https://github.com/test-kitchen/test-kitchen/issues/154
|
464
|
+
[#155]: https://github.com/test-kitchen/test-kitchen/issues/155
|
465
|
+
[#157]: https://github.com/test-kitchen/test-kitchen/issues/157
|
466
|
+
[#161]: https://github.com/test-kitchen/test-kitchen/issues/161
|
467
|
+
[#163]: https://github.com/test-kitchen/test-kitchen/issues/163
|
468
|
+
[#166]: https://github.com/test-kitchen/test-kitchen/issues/166
|
469
|
+
[#170]: https://github.com/test-kitchen/test-kitchen/issues/170
|
470
|
+
[#171]: https://github.com/test-kitchen/test-kitchen/issues/171
|
471
|
+
[#172]: https://github.com/test-kitchen/test-kitchen/issues/172
|
472
|
+
[#176]: https://github.com/test-kitchen/test-kitchen/issues/176
|
473
|
+
[#178]: https://github.com/test-kitchen/test-kitchen/issues/178
|
474
|
+
[#179]: https://github.com/test-kitchen/test-kitchen/issues/179
|
475
|
+
[#187]: https://github.com/test-kitchen/test-kitchen/issues/187
|
476
|
+
[#188]: https://github.com/test-kitchen/test-kitchen/issues/188
|
477
|
+
[#192]: https://github.com/test-kitchen/test-kitchen/issues/192
|
478
|
+
[#193]: https://github.com/test-kitchen/test-kitchen/issues/193
|
479
|
+
[#206]: https://github.com/test-kitchen/test-kitchen/issues/206
|
480
|
+
[#217]: https://github.com/test-kitchen/test-kitchen/issues/217
|
481
|
+
[#218]: https://github.com/test-kitchen/test-kitchen/issues/218
|
482
|
+
[#222]: https://github.com/test-kitchen/test-kitchen/issues/222
|
483
|
+
[#227]: https://github.com/test-kitchen/test-kitchen/issues/227
|
484
|
+
[#231]: https://github.com/test-kitchen/test-kitchen/issues/231
|
485
|
+
[#235]: https://github.com/test-kitchen/test-kitchen/issues/235
|
486
|
+
[#240]: https://github.com/test-kitchen/test-kitchen/issues/240
|
487
|
+
[#242]: https://github.com/test-kitchen/test-kitchen/issues/242
|
488
|
+
[#249]: https://github.com/test-kitchen/test-kitchen/issues/249
|
489
|
+
[#253]: https://github.com/test-kitchen/test-kitchen/issues/253
|
490
|
+
[#254]: https://github.com/test-kitchen/test-kitchen/issues/254
|
491
|
+
[#256]: https://github.com/test-kitchen/test-kitchen/issues/256
|
492
|
+
[#258]: https://github.com/test-kitchen/test-kitchen/issues/258
|
493
|
+
[#259]: https://github.com/test-kitchen/test-kitchen/issues/259
|
494
|
+
[#262]: https://github.com/test-kitchen/test-kitchen/issues/262
|
495
|
+
[#265]: https://github.com/test-kitchen/test-kitchen/issues/265
|
496
|
+
[#266]: https://github.com/test-kitchen/test-kitchen/issues/266
|
497
|
+
[#272]: https://github.com/test-kitchen/test-kitchen/issues/272
|
498
|
+
[#275]: https://github.com/test-kitchen/test-kitchen/issues/275
|
499
|
+
[#276]: https://github.com/test-kitchen/test-kitchen/issues/276
|
500
|
+
[#277]: https://github.com/test-kitchen/test-kitchen/issues/277
|
501
|
+
[#278]: https://github.com/test-kitchen/test-kitchen/issues/278
|
502
|
+
[#280]: https://github.com/test-kitchen/test-kitchen/issues/280
|
503
|
+
[#282]: https://github.com/test-kitchen/test-kitchen/issues/282
|
504
|
+
[#283]: https://github.com/test-kitchen/test-kitchen/issues/283
|
505
|
+
[#285]: https://github.com/test-kitchen/test-kitchen/issues/285
|
506
|
+
[#286]: https://github.com/test-kitchen/test-kitchen/issues/286
|
507
|
+
[#287]: https://github.com/test-kitchen/test-kitchen/issues/287
|
508
|
+
[#288]: https://github.com/test-kitchen/test-kitchen/issues/288
|
509
|
+
[#293]: https://github.com/test-kitchen/test-kitchen/issues/293
|
510
|
+
[#296]: https://github.com/test-kitchen/test-kitchen/issues/296
|
511
|
+
[#298]: https://github.com/test-kitchen/test-kitchen/issues/298
|
512
|
+
[#302]: https://github.com/test-kitchen/test-kitchen/issues/302
|
513
|
+
[#303]: https://github.com/test-kitchen/test-kitchen/issues/303
|
514
|
+
[#304]: https://github.com/test-kitchen/test-kitchen/issues/304
|
515
|
+
[#305]: https://github.com/test-kitchen/test-kitchen/issues/305
|
516
|
+
[#306]: https://github.com/test-kitchen/test-kitchen/issues/306
|
517
|
+
[#309]: https://github.com/test-kitchen/test-kitchen/issues/309
|
518
|
+
[#310]: https://github.com/test-kitchen/test-kitchen/issues/310
|
519
|
+
[#313]: https://github.com/test-kitchen/test-kitchen/issues/313
|
520
|
+
[#316]: https://github.com/test-kitchen/test-kitchen/issues/316
|
521
|
+
[#318]: https://github.com/test-kitchen/test-kitchen/issues/318
|
522
|
+
[#343]: https://github.com/test-kitchen/test-kitchen/issues/343
|
523
|
+
[#352]: https://github.com/test-kitchen/test-kitchen/issues/352
|
524
|
+
[#353]: https://github.com/test-kitchen/test-kitchen/issues/353
|
525
|
+
[#357]: https://github.com/test-kitchen/test-kitchen/issues/357
|
526
|
+
[#358]: https://github.com/test-kitchen/test-kitchen/issues/358
|
527
|
+
[#363]: https://github.com/test-kitchen/test-kitchen/issues/363
|
528
|
+
[#366]: https://github.com/test-kitchen/test-kitchen/issues/366
|
529
|
+
[#370]: https://github.com/test-kitchen/test-kitchen/issues/370
|
530
|
+
[#373]: https://github.com/test-kitchen/test-kitchen/issues/373
|
531
|
+
[#375]: https://github.com/test-kitchen/test-kitchen/issues/375
|
532
|
+
[#381]: https://github.com/test-kitchen/test-kitchen/issues/381
|
533
|
+
[#397]: https://github.com/test-kitchen/test-kitchen/issues/397
|
534
|
+
[#399]: https://github.com/test-kitchen/test-kitchen/issues/399
|
535
|
+
[#416]: https://github.com/test-kitchen/test-kitchen/issues/416
|
536
|
+
[#427]: https://github.com/test-kitchen/test-kitchen/issues/427
|
537
|
+
[#431]: https://github.com/test-kitchen/test-kitchen/issues/431
|
538
|
+
[#433]: https://github.com/test-kitchen/test-kitchen/issues/433
|
539
|
+
[#450]: https://github.com/test-kitchen/test-kitchen/issues/450
|
540
|
+
[#454]: https://github.com/test-kitchen/test-kitchen/issues/454
|
541
|
+
[#456]: https://github.com/test-kitchen/test-kitchen/issues/456
|
542
|
+
[#457]: https://github.com/test-kitchen/test-kitchen/issues/457
|
543
|
+
[#462]: https://github.com/test-kitchen/test-kitchen/issues/462
|
544
|
+
[#477]: https://github.com/test-kitchen/test-kitchen/issues/477
|
545
|
+
[#478]: https://github.com/test-kitchen/test-kitchen/issues/478
|
546
|
+
[#481]: https://github.com/test-kitchen/test-kitchen/issues/481
|
547
|
+
[#489]: https://github.com/test-kitchen/test-kitchen/issues/489
|
548
|
+
[#498]: https://github.com/test-kitchen/test-kitchen/issues/498
|
549
|
+
[#504]: https://github.com/test-kitchen/test-kitchen/issues/504
|
550
|
+
[#507]: https://github.com/test-kitchen/test-kitchen/issues/507
|
551
|
+
[#510]: https://github.com/test-kitchen/test-kitchen/issues/510
|
552
|
+
[#521]: https://github.com/test-kitchen/test-kitchen/issues/521
|
553
|
+
[#524]: https://github.com/test-kitchen/test-kitchen/issues/524
|
554
|
+
[#526]: https://github.com/test-kitchen/test-kitchen/issues/526
|
555
|
+
[#527]: https://github.com/test-kitchen/test-kitchen/issues/527
|
556
|
+
[#531]: https://github.com/test-kitchen/test-kitchen/issues/531
|
557
|
+
[#543]: https://github.com/test-kitchen/test-kitchen/issues/543
|
558
|
+
[#549]: https://github.com/test-kitchen/test-kitchen/issues/549
|
559
|
+
[#554]: https://github.com/test-kitchen/test-kitchen/issues/554
|
560
|
+
[#555]: https://github.com/test-kitchen/test-kitchen/issues/555
|
561
|
+
[#557]: https://github.com/test-kitchen/test-kitchen/issues/557
|
562
|
+
[#558]: https://github.com/test-kitchen/test-kitchen/issues/558
|
563
|
+
[#567]: https://github.com/test-kitchen/test-kitchen/issues/567
|
475
564
|
[@ChrisLundquist]: https://github.com/ChrisLundquist
|
565
|
+
[@MarkGibbons]: https://github.com/MarkGibbons
|
476
566
|
[@adamhjk]: https://github.com/adamhjk
|
477
567
|
[@arangamani]: https://github.com/arangamani
|
478
568
|
[@arunthampi]: https://github.com/arunthampi
|
569
|
+
[@benlangfeld]: https://github.com/benlangfeld
|
479
570
|
[@bkw]: https://github.com/bkw
|
480
571
|
[@bryanwb]: https://github.com/bryanwb
|
481
572
|
[@calavera]: https://github.com/calavera
|
573
|
+
[@chrishenry]: https://github.com/chrishenry
|
574
|
+
[@coderanger]: https://github.com/coderanger
|
575
|
+
[@curiositycasualty]: https://github.com/curiositycasualty
|
576
|
+
[@daniellockard]: https://github.com/daniellockard
|
482
577
|
[@ekrupnik]: https://github.com/ekrupnik
|
483
578
|
[@fnichol]: https://github.com/fnichol
|
484
579
|
[@fnordfish]: https://github.com/fnordfish
|
485
580
|
[@gmiranda23]: https://github.com/gmiranda23
|
486
581
|
[@gondoi]: https://github.com/gondoi
|
487
582
|
[@grahamc]: https://github.com/grahamc
|
583
|
+
[@grubernaut]: https://github.com/grubernaut
|
488
584
|
[@hollow]: https://github.com/hollow
|
585
|
+
[@jaimegildesagredo]: https://github.com/jaimegildesagredo
|
489
586
|
[@jasonroelofs]: https://github.com/jasonroelofs
|
587
|
+
[@jgoldschrafe]: https://github.com/jgoldschrafe
|
588
|
+
[@jochenseeber]: https://github.com/jochenseeber
|
490
589
|
[@jonsmorrow]: https://github.com/jonsmorrow
|
491
590
|
[@josephholsten]: https://github.com/josephholsten
|
492
591
|
[@jrwesolo]: https://github.com/jrwesolo
|
493
592
|
[@jschneiderhan]: https://github.com/jschneiderhan
|
593
|
+
[@jstriebel]: https://github.com/jstriebel
|
594
|
+
[@jtgiri]: https://github.com/jtgiri
|
494
595
|
[@jtimberman]: https://github.com/jtimberman
|
495
596
|
[@juliandunn]: https://github.com/juliandunn
|
597
|
+
[@justincampbell]: https://github.com/justincampbell
|
496
598
|
[@kamalim]: https://github.com/kamalim
|
497
599
|
[@kisoku]: https://github.com/kisoku
|
600
|
+
[@lamont-granquist]: https://github.com/lamont-granquist
|
498
601
|
[@manul]: https://github.com/manul
|
602
|
+
[@martinb3]: https://github.com/martinb3
|
499
603
|
[@mattray]: https://github.com/mattray
|
500
604
|
[@mconigliaro]: https://github.com/mconigliaro
|
605
|
+
[@mcquin]: https://github.com/mcquin
|
606
|
+
[@michaelkirk]: https://github.com/michaelkirk
|
501
607
|
[@mthssdrbrg]: https://github.com/mthssdrbrg
|
502
608
|
[@oferrigni]: https://github.com/oferrigni
|
503
609
|
[@patcon]: https://github.com/patcon
|
504
610
|
[@portertech]: https://github.com/portertech
|
505
611
|
[@rarenerd]: https://github.com/rarenerd
|
506
612
|
[@reset]: https://github.com/reset
|
613
|
+
[@rhass]: https://github.com/rhass
|
614
|
+
[@ringods]: https://github.com/ringods
|
615
|
+
[@robcoward]: https://github.com/robcoward
|
507
616
|
[@rteabeault]: https://github.com/rteabeault
|
508
617
|
[@ryansouza]: https://github.com/ryansouza
|
509
618
|
[@ryotarai]: https://github.com/ryotarai
|
510
619
|
[@saketoba]: https://github.com/saketoba
|
620
|
+
[@sawanoboly]: https://github.com/sawanoboly
|
511
621
|
[@scarolan]: https://github.com/scarolan
|
512
622
|
[@schisamo]: https://github.com/schisamo
|
513
623
|
[@scotthain]: https://github.com/scotthain
|
514
624
|
[@sethvargo]: https://github.com/sethvargo
|
515
625
|
[@smith]: https://github.com/smith
|
516
626
|
[@someara]: https://github.com/someara
|
627
|
+
[@srenatus]: https://github.com/srenatus
|
517
628
|
[@stevendanna]: https://github.com/stevendanna
|
518
629
|
[@thommay]: https://github.com/thommay
|
519
630
|
[@zts]: https://github.com/zts
|