From 03a24d5ab51c97cd7fdb1b4fe6cd8c353b85c63f Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Mon, 9 Sep 2019 22:01:09 +0100 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. --- .gitignore | 1 + .kitchen.yml => kitchen.yml | 0 2 files changed, 1 insertion(+) rename .kitchen.yml => kitchen.yml (100%) diff --git a/.gitignore b/.gitignore index 010d083ccdd..6b41ecd2ba1 100644 --- a/.gitignore +++ b/.gitignore @@ -105,6 +105,7 @@ tests/integration/cloud/providers/pki/minions # Kitchen tests files .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