From 757f4b61693f723b14ce2fb97a1f8accd082d1d7 Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Sat, 13 Feb 2021 13:43:15 +0000 Subject: [PATCH] refactor(kitchen): prefer `kitchen.yml` to `.kitchen.yml` * Quoting from https://kitchen.ci/docs/getting-started/kitchen-yml/: - As of test-kitchen 1.21.0, we now prefer `kitchen.yml` over `.kitchen.yml`. - This preference applies to `kitchen.local.yml` as well. - This is backward compatible so the dot versions continue to work. * Mirrors contribution to `saltstack/salt` repo: - https://github.com/saltstack/salt/pull/54442 * `.gitignore`: - https://github.com/saltstack/salt/blob/46f96e4f37d11743470b82e9f4a98d74feddace1/.gitignore#L112-L116 --- .gitignore | 6 ++++-- .kitchen.yml => kitchen.yml | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename .kitchen.yml => kitchen.yml (100%) diff --git a/.gitignore b/.gitignore index 48d9908..bf18766 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,8 @@ .idea # test-kitchen -.kitchen -.bundle +.kitchen.local.yml +kitchen.local.yml +.kitchen/ +.bundle/ Gemfile.lock diff --git a/.kitchen.yml b/kitchen.yml similarity index 100% rename from .kitchen.yml rename to kitchen.yml