Merge "Fixed custom install of kitchen tests envs"
diff --git a/test-salt-formulas-pipeline.groovy b/test-salt-formulas-pipeline.groovy
index 6b3c385..2bf7b09 100644
--- a/test-salt-formulas-pipeline.groovy
+++ b/test-salt-formulas-pipeline.groovy
@@ -70,7 +70,9 @@
           kitchenEnvs=kitchenConfigYML["env"]
           def kitchenInit = kitchenConfigYML["install"]
           for(int i=0;i<kitchenInit.size();i++){
-            sh(kitchenInit[i])
+            if(!kitchenInit[i].contains("pip install")){ //we dont want to execute pip install
+              sh(kitchenInit[i])
+            }
           }
         }else{
           common.infoMsg(".travis.yml not found, running default kitchen init")