Fixed custom envs passing in kitchen tests
Change-Id: Iefee9bad7caa23410e00ba0733dbe7117ef02762
diff --git a/test-salt-formulas-pipeline.groovy b/test-salt-formulas-pipeline.groovy
index 630a2a7..6d76367 100644
--- a/test-salt-formulas-pipeline.groovy
+++ b/test-salt-formulas-pipeline.groovy
@@ -83,7 +83,9 @@
if(fileExists(".travis.yml")){
common.infoMsg(".travis.yml found, running custom kitchen init")
def kitchenConfigYML = readYaml(file: ".travis.yml")
- kitchenEnvs=kitchenConfigYML["env"]
+ if(kitchenConfigYML.containsKey("env")){
+ kitchenEnvs=kitchenConfigYML["env"]
+ }
def kitchenInit = kitchenConfigYML["install"]
def kitchenInstalled = false
if(kitchenInit && !kitchenInit.isEmpty()){