From fc7dcb24b24be1f096f195e08a3433c39b285212 Mon Sep 17 00:00:00 2001 From: Salim Alam Date: Tue, 9 Feb 2016 11:17:19 -0800 Subject: Make kitchen run concurrently --- acceptance/.shared/kitchen_acceptance/libraries/kitchen.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance/.shared/kitchen_acceptance/libraries/kitchen.rb b/acceptance/.shared/kitchen_acceptance/libraries/kitchen.rb index 0d4a388cd5..d3913ebb11 100644 --- a/acceptance/.shared/kitchen_acceptance/libraries/kitchen.rb +++ b/acceptance/.shared/kitchen_acceptance/libraries/kitchen.rb @@ -25,7 +25,7 @@ module KitchenAcceptance property :artifactory_username, String, default: lazy { ENV["ARTIFACTORY_USERNAME"] } property :artifactory_password, String, default: lazy { ENV["ARTIFACTORY_PASSWORD"] } property :env, Hash, default: {} - property :kitchen_options, String, default: "-l debug" + property :kitchen_options, String, default: lazy { ENV["PROJECT_NAME"] ? "-c -l debug" : "-c" } action :run do execute "bundle exec kitchen #{command}#{instances ? " #{instances}" : ""}#{kitchen_options ? " #{kitchen_options}" : ""}" do -- cgit v1.2.1