Added pipelines previously defined in mk-ci-salt-model

Change-Id: Id759cf59d029b3d7d9e1fbd13abf875b6737ebc4
diff --git a/test-salt-formulas-pipeline.groovy b/test-salt-formulas-pipeline.groovy
new file mode 100644
index 0000000..2a3b2ac
--- /dev/null
+++ b/test-salt-formulas-pipeline.groovy
@@ -0,0 +1,23 @@
+def common = new com.mirantis.mk.Common()
+def gerrit = new com.mirantis.mk.Gerrit()
+node("python") {
+  try{
+    stage("checkout") {
+      gerrit.gerritPatchsetCheckout ([
+          credentialsId : CREDENTIALS_ID
+      ])
+    }
+    stage("test") {
+      wrap([$class: 'AnsiColorBuildWrapper']) {
+        sh("make clean")
+        sh("[ $SALT_VERSION != 'latest' ] || export SALT_VERSION=''; make test")
+      }
+    }
+  } catch (Throwable e) {
+     // If there was an error or exception thrown, the build failed
+     currentBuild.result = "FAILURE"
+     throw e
+  } finally {
+     common.sendNotification(currentBuild.result,"",["slack"])
+  }
+}
\ No newline at end of file